/* ============================================================
   Tennis Club Rhodia Vaise — Page d'attente
   Tokens fournis par le client :
     - Teal   : #003B3B
     - Orange : #DD5400
     - Mint   : #EDF3F1
     - Noir à 80% : rgba(0,0,0,0.8)  -> utilisé pour les
       séparateurs et l'ombre portée des boutons
   Police : Inter
   ============================================================ */

:root {
  --teal: #003b3b;
  --orange: #dd5400;
  --orange-hover: #c04800;
  --mint: #edf3f1;
  --black-80: rgba(0, 0, 0, 0.8);

  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --divider: rgba(255, 255, 255, 0.169);

  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-width: 1140px;
  --container-padding: 24px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--teal);
  color: var(--text-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--text-muted);
}

.page {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 64px var(--container-padding) 56px;
}

.accent {
  color: var(--orange);
}

.white {
  color: var(--text-white);
}

/* ---------- En-tete ---------- */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}

.brand img{
  max-height: 45px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-text {
  line-height: 1.2;
}

.brand-text .eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin: 0;
  font-weight: 300;
}

.brand-text .name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
}

/* ---------- Hero ---------- */

.hero h1 {
  display: flex;
  flex-direction: column;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 24px;
  max-width: 900px;
}

.hero .lede {
  font-size: 18px;
  max-width: 880px;
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--text-white);
}
.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: var(--text-white);
  color: var(--teal);
}

/* ---------- Infos pratiques ---------- */

.infos {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 32px;
  padding-top: 28px;
  padding-bottom: 40px;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  margin-bottom: 64px;
}

.infos-col{
  border-right: 1px solid var(--divider);
}

.infos-col:last-child{
  border-right: none;
}

.infos-col .eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.infos-col p {
  font-size: 15px;
  color: var(--text-white);
}

.infos-col a {
  color: var(--text-white);
}
.infos-col a:hover {
  color: var(--orange);
}

/* ---------- FAQ ---------- */

.faq h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 12px;
}

.faq > .lede {
  font-size: 16px;
  margin-bottom: 36px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}

.faq-item {
  padding: 24px 0;
  border-top: 1px solid var(--divider);
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 10px;
}

.faq-item p {
  font-size: 15px;
}

/* ---------- Pied de page ---------- */

.foot-note {
  margin-top: 56px;
}

.foot-note p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .hero h1 {
    font-size: 38px;
  }
  .infos {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 40px 20px 40px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
}
