/* ============================================================
   HUB RÉSERVATION — page de choix (/reservation/)
   S'appuie sur les variables de globalQDLG.css.
   ============================================================ */

.reservation-hub {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.25rem) 2rem clamp(3rem, 5vw, 4rem);
}

.hub-options {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  background: var(--blanc);
  border: 1px solid var(--bord);
  border-radius: var(--r-lg);
  box-shadow: 0 1px 2px rgba(26, 26, 24, .04), 0 10px 26px rgba(26, 26, 24, .05);
  text-decoration: none;
  color: var(--texte);
}

/* Carte active (lien) */
.hub-card--active {
  border-color: rgba(122, 16, 16, .22);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.hub-card--active:hover {
  transform: translateY(-3px);
  border-color: var(--rouge);
  box-shadow: 0 14px 34px rgba(122, 16, 16, .14);
}
.hub-card--active:focus-visible {
  outline: 3px solid rgba(200, 146, 42, .45);
  outline-offset: 3px;
}

/* Carte à venir (désactivée) */
.hub-card--soon {
  background: #faf8f6;
  border-style: dashed;
  cursor: not-allowed;
}
.hub-card--soon .hub-icon,
.hub-card--soon .hub-title,
.hub-card--soon .hub-desc {
  opacity: .55;
}

.hub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--rouge-lt);
  color: var(--rouge);
}
.hub-icon svg { width: 26px; height: 26px; }

.hub-title {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--rouge);
  margin-bottom: .5rem;
}

.hub-desc {
  color: var(--texte-2);
  font-size: .95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

/* pousse l'appel à l'action en bas de carte */
.hub-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--rouge);
}
.hub-card--active:hover .hub-cta svg { transform: translateX(3px); }
.hub-cta svg { transition: transform .18s; }

.hub-cta--muted {
  color: var(--texte-2);
  font-weight: 600;
}

/* Badge « Construction en cours » */
.hub-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  padding: .22rem .55rem;
  border-radius: 999px;
  background: var(--or);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hub-foot {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  color: var(--texte-2);
  font-size: .92rem;
}
.hub-foot a { color: var(--rouge); font-weight: 600; }

@media (max-width: 880px) {
  .hub-options { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .reservation-hub { padding-inline: 1rem; }
}
