/* ═══ VERDON GÎTES — contact.css ════════════════════
   Page /contact/
   Requiert styles.css
   ═══════════════════════════════════════════════════ */

/* ══ HERO ════════════════════════════════════════════ */
.cnt-hero {
  background: var(--stone);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  height: 45vh;
  place-content: center;
}
.cnt-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #0e7d88d4 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.cnt-hero-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cnt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    var(--stone) 80%
  );
  pointer-events: none;
  z-index: 1;
}
.cnt-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* H1 */
.cnt-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cnt-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--cyan-deep);
}

/* Description */
.cnt-hero-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 1.8rem;
}
.cnt-hero-desc strong {
  color: var(--text);
  font-weight: 700;
}

/* Pills */
.cnt-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cnt-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: white;
  color: var(--text-mid);
  transition:
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.cnt-hero-pill:hover {
  border-color: var(--cyan);
  color: var(--cyan-deep);
  box-shadow: 0 2px 12px rgba(46, 196, 196, 0.12);
}
.cnt-pill-phone {
  background: var(--cyan-soft);
  border-color: rgba(46, 196, 196, 0.25);
  color: var(--cyan-deep);
  font-weight: 700;
}
.cnt-pill-phone:hover {
  background: rgba(46, 196, 196, 0.14);
  border-color: var(--cyan);
}

/* ── BREADCRUMB ─────────────────────────────────────────────────── */

.breadcrumb {
  padding: 1rem 2rem;
  background: var(--stone-light);
  font-size: 0.82rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.breadcrumb a {
  color: var(--cyan-deep);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--cyan);
}
.breadcrumb span {
  margin: 0 8px;
  opacity: 0.4;
}

/* ══ SECTION PRINCIPALE (coordonnées + accès) ═════════ */
.cnt-main-section {
  padding: 5.5rem 2rem;
  background: var(--cream);
}
.cnt-main-inner {
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
/* ══ COORDONNÉES (remplace le formulaire) ════════════ */
 
.cnt-contact-block {
  max-width: 800px;
  margin: 0 auto;
}
.cnt-contact-intro {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0.75rem 0 2.5rem;
  max-width: 560px;
}
 
/* Cartes coordonnées */
.cnt-coords {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.cnt-coord-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1.5px solid rgba(45, 37, 32, 0.08);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cnt-coord-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(46, 196, 196, 0.12);
  transform: translateY(-2px);
}
.cnt-coord-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan-deep);
}
.cnt-coord-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.cnt-coord-card span {
  font-size: 0.88rem;
  color: var(--cyan-deep);
  font-weight: 600;
}
 
/* CTA Réservation */
.cnt-resa-cta {
  background: linear-gradient(135deg, rgba(46, 196, 196, 0.06) 0%, rgba(46, 196, 196, 0.02) 100%);
  border: 1.5px solid rgba(46, 196, 196, 0.2);
  border-radius: 20px;
  padding: 2rem 2.5rem;
}
.cnt-resa-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cnt-resa-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan-deep);
}
.cnt-resa-text {
  flex: 1;
  min-width: 250px;
}
.cnt-resa-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.cnt-resa-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}
.cnt-resa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
 
/* Responsive */
@media (max-width: 860px) {
  .cnt-coords {
    grid-template-columns: 1fr;
  }
  .cnt-resa-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cnt-resa-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ══ CARTE OSM ════════════════════════════════════════ */
.cnt-map-section {
  background: var(--stone);
  padding: 4rem 2rem 0;
}
.cnt-map-header {
  max-width: 1100px;
  margin: 0 auto 2rem;
  text-align: center;
}

.cnt-map-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.08);
}
.cnt-map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}
.cnt-map-pin {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
.cnt-map-pin svg {
  color: var(--cyan);
  flex-shrink: 0;
}

/* ══ CTA RÉSERVATION ══════════════════════════════════ */
.cnt-cta-section {
  padding: 5.5rem 2rem;
  background: var(--stone);
}
.cnt-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cnt-cta-box {
  background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan) 100%);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46, 196, 196, 0.18);
}
.cnt-cta-box::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.cnt-cta-box::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cnt-cta-left {
  position: relative;
  z-index: 2;
}
.cnt-cta-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}
.cnt-cta-left h2 em {
  font-style: italic;
  font-weight: 400;
}
.cnt-cta-left p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.cnt-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cnt-cta-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.cnt-cta-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  transition: background 0.25s;
}
.cnt-cta-item:hover {
  background: rgba(255, 255, 255, 0.16);
}
.cnt-cta-num {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  min-width: 22px;
}
.cnt-cta-item > div {
  flex: 1;
}
.cnt-cta-item strong {
  display: block;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 0.15rem;
}
.cnt-cta-item span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ══ RESPONSIVE ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cnt-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cnt-card:nth-child(2)::after {
    display: none;
  }
}
@media (max-width: 860px) {
  .cnt-main-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .cnt-cta-box {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .cnt-hero {
    min-height: 380px;
    height: auto;
  }
  .cnt-cards-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }
  .cnt-form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cnt-hero-pills {
    flex-direction: column;
    gap: 8px;
  }
  .cnt-hero-pill {
    width: fit-content;
  }
  .cnt-map-wrap iframe {
    height: 280px;
  }
}

