/**
 * Page Réservations – Cards synthétiques + blocs détaillés
 */

/* ─── Intro ────────────────────────────────────────── */
.rv2-intro { padding-bottom: 0; }

/* ─── Grille des 3 cartes ──────────────────────────── */
.rv2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  align-items: stretch;
}

/* ─── Carte synthétique ─────────────────────────────── */
.rv2-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 22px 26px;
  border-radius: 14px;
  border: 2px dashed #dee2e6;
  color: inherit;
  position: relative;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.rv2-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}
.rv2-card:hover .btn { transform: scale(1.04); }

/* Lien transparent couvrant toute la carte (z-index bas) */
.rv2-card__link {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  z-index: 0;
}

/* Éléments cliquables au-dessus du lien de carte */
.rv2-card .btn,
.rv2-badge {
  position: relative;
  z-index: 1;
}

.rv2-card--book { background: #f8f9fa; border-color: rgba(80, 80, 250, 0.35); }
.rv2-card--gift { background: #fff8f6; border-color: rgba(252, 110, 81, 0.35); }
.rv2-card--ref  { background: #F6FCF5; border-color: rgba(76, 175, 80, 0.35); }

.rv2-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin: 20px 0 20px;
}
.rv2-card p {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
}
.rv2-card .btn {
  min-width: 148px;
  transition: transform 0.18s ease;
}

/* Badge */
.rv2-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  pointer-events: none;
}
.rv2-badge--gift {
  background: linear-gradient(135deg, var(--orange), #e8647a);
}

/* ─── Séparateur ────────────────────────────────────── */
.rv2-separator {
  border: none;
  border-top: 2px dashed #e8e0d8;
  margin: 36px 0 0;
}

/* ─── Blocs détaillés (cartes) ──────────────────────── */
.rv2-detail {
  margin-top: 16px;
  padding: 0;
}
.rv2-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  padding: 36px 40px;
}
.rv2-detail__header h2 {
  font-size: 1.45rem;
  margin: 0 0 12px;
  color: #333;
}
.rv2-detail__header p {
  color: #555;
  margin: 0;
  line-height: 1.65;
}

/* Liste de caractéristiques */
.rv2-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.rv2-features li {
  padding: 8px 0;
  color: #444;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0ebe6;
}
.rv2-features li:last-child { border-bottom: none; }
.rv2-features li::before {
  content: "✓ ";
  color: var(--orange);
  font-weight: 700;
}
.rv2-features li strong { color: #222; }

/* Conditions fine print */
.rv2-conditions {
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 20px;
  line-height: 1.55;
}
.rv2-conditions a {
  color: rgba(252, 110, 81, 0.75);
  text-decoration: none;
  text-underline-offset: 2px;
}
.rv2-conditions a:hover {
  color: var(--orange);
}

/* ─── Section aide ───────────────────────────────────── */
.reservations-help {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-top: 16px;
  text-align: center;
}
.reservations-help h3 { margin-top: 0; }
.reservations-help .btn { margin-top: 20px; }
.reservations-help-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .rv2-grid { grid-template-columns: 1fr; }
  .rv2-detail__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }
}
