/* ===== PAGE RÉSERVER ===== */

/* HERO */
.res-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  background: #7a4800;
}

.res-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/labyrinthe-fond.png');
  background-repeat: repeat;
  background-size: 600px;
  opacity: 0.05;
}

.res-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.res-hero-label {
  font-family: 'Luckiest Guy', cursive;
  color: #eba946;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.res-hero h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(60px, 10vw, 120px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
}

.res-hero-sub {
  font-size: clamp(17px, 1.5vw, 22px);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* BIENTÔT */
.res-bientot {
  background: #1a3c1a;
  padding: 80px 20px;
  text-align: center;
}

.res-bientot-inner {
  max-width: 700px;
  margin: 0 auto;
}

.res-bientot-icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.res-bientot h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(28px, 4vw, 56px);
  color: #eba946;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.res-bientot p {
  font-size: clamp(16px, 1.3vw, 20px);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
}

.res-bientot-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(235,169,70,0.12);
  border: 2px solid #eba946;
  border-radius: 20px;
  padding: 20px 40px;
  gap: 6px;
}

.res-bientot-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.res-bientot-chiffre {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(24px, 3vw, 40px);
  color: #eba946;
  letter-spacing: 1px;
}

/* INFOS BILLETS */
.res-infos {
  background: #fffdf8;
  padding: 80px 20px;
}

.res-infos-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.res-infos h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(28px, 3.5vw, 52px);
  color: #2e7d32;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.1;
}

.res-intro {
  font-size: clamp(17px, 1.3vw, 21px);
  color: #444;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 720px;
}

/* CARTES TARIFS */
.res-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.res-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-top: 5px solid #eba946;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.res-card-gratuit {
  border-top-color: #2e7d32;
}

.res-card-icon {
  font-size: 44px;
}

.res-card h3 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(18px, 2vw, 26px);
  color: #2c2418;
  text-transform: uppercase;
}

.res-card-price {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(36px, 4vw, 56px);
  color: #eba946;
  line-height: 1;
}

.res-card-gratuit .res-card-price {
  color: #2e7d32;
}

.res-card p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* SOUS-TITRE */
.res-sous-titre {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(24px, 3vw, 42px);
  color: #1a1a2e;
  text-transform: uppercase;
  margin: 56px 0 24px;
  line-height: 1.1;
}

/* CARTES NOCTURNES */
.res-card-fluo {
  border-top-color: #705399;
}

.res-card-fluo .res-card-price {
  color: #705399;
}

.res-card-horreur {
  border-top-color: #1a1a2e;
}

.res-card-horreur .res-card-price {
  color: #1a1a2e;
}

/* RAPPEL */
.res-rappel {
  background: #fff8ec;
  border-left: 5px solid #eba946;
  border-radius: 0 14px 14px 0;
  padding: 20px 28px;
}

.res-rappel p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

  .res-hero {
    margin-top: 96px;
    min-height: 300px;
  }

  .res-hero-content {
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
    padding: 200px 20px 30px !important;
  }

  .res-bientot {
    padding: 50px 20px;
  }

  .res-bientot-date {
    padding: 16px 28px;
  }

  .res-infos {
    padding: 50px 16px;
  }

  .res-cards {
    grid-template-columns: 1fr;
  }

  .res-card {
    padding: 28px 20px;
  }
}
