/* contact.css
   Dépend de : main.css (navbar, footer, section-label, gold-line, responsive commun)
   Styles propres à cette page uniquement.
   Note : cette page utilise un hero custom (.contact-hero) et non .page-hero.
============================================================ */

/* ============================================================
   HERO CONTACT — hero spécifique (pas de .page-hero ici)
============================================================ */
.contact-hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 4rem;
  text-align: center;
}
.hero-logo-b {
  width: min(280px, 55vw);
  height: min(280px, 55vw);
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 2.5rem;
  opacity: 0.92;
}
.contact-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.gold-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.8rem auto;
}
.contact-hero p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 2;
}

/* ============================================================
   CONTACT LAYOUT
============================================================ */
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 5% 7rem;
}
.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 2rem;
}

/* Infos */
.info-block {
  margin-bottom: 2.2rem;
}
.info-block-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.info-block-content {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  line-height: 2;
}
.info-block-content a {
  color: var(--sage);
  transition: color 0.3s;
  font-weight: 600;
}
.info-block-content a:hover {
  color: var(--gold);
}

/* Horaires */
.horaire-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dim);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(63, 42, 29, 0.06);
}
.horaire-row span:last-child {
  color: var(--cream);
}
.horaire-row.fermé span:last-child {
  color: var(--sage);
}
.horaire-note {
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 0.6rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   FOOTER — surcharge légère spécifique contact
   (les styles communs du footer sont dans main.css)
============================================================ */
.footer {
  padding: 3rem 5%;
}

/* ============================================================
   RESPONSIVE — contact.css
============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .contact-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-wrap {
    padding: 3rem 6% 5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-hero {
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 2.5rem;
    padding-left: 5%;
    padding-right: 5%;
  }
  .hero-logo-b {
    width: min(200px, 60vw);
    height: min(200px, 60vw);
    margin-bottom: 1.8rem;
    margin-top: 1.8rem;
  }
  .contact-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .contact-hero p {
    font-size: 1.51rem;
    text-align: left;
    font-weight: 600;
  }
  .contact-wrap {
    padding: 2rem 5% 5rem;
  }
  .contact-columns {
    gap: 2rem;
  }
  .contact-card h2 {
    font-size: 1.87rem;
    margin-bottom: 1.4rem;
  }

  /* Tailles mobile légèrement augmentées pour lisibilité */
  .info-block-content {
    font-size: 1.1rem;
    line-height: 1.85;
  }
  .info-block-label {
    font-size: 0.75rem;
  }
  .horaire-row {
    font-size: 1rem;
  }
  .contact-card h2 {
    font-size: 1.45rem;
  }
}

/* Petit mobile */
@media (max-width: 480px) {
  .contact-hero p {
    font-size: 1.44rem;
  }
  .info-block-content a {
    font-weight: 500;
  }
  .horaire-row {
    font-size: 1rem;
  }
}
