/* =============================================
   POLICES LOCALES (Figtree — variable font)
   ============================================= */
@font-face {
  font-family: 'Figtree';
  src: url('fonts/Figtree-VariableFont_wght.woff2') format('woff2-variations'),
       url('fonts/Figtree-VariableFont_wght.ttf')   format('truetype-variations');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('fonts/Figtree-Italic-VariableFont_wght.woff2') format('woff2-variations'),
       url('fonts/Figtree-Italic-VariableFont_wght.ttf')   format('truetype-variations');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

/* =============================================
   VARIABLES & BASE
   ============================================= */
:root {
  --primary:      #003087;
  --primary-dark: #001A5C;
  --accent:       #FFC72C;
  --accent-red:   #E31837;
  --text:         #1a1a2e;
  --light:        #EEF4FF;
  --primary-light: #1a4aab;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  font-family: 'Figtree', system-ui, -apple-system, Arial, sans-serif, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji';
  color: var(--text);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3 { }
img { max-width: 100%; display: block; }

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: white;
  padding: 50px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,199,44,0.1), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(227,24,55,0.08), transparent 50%);
  pointer-events: none;
}

/* Étoiles / paillettes décoratives dans le header */
.hero-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

/* Étoiles génériques (header + reveal) */
.star {
  position: absolute;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 35%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  opacity: 0.65;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.22; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.9); }
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.hero-title-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 18px 0 12px;
  flex-wrap: wrap;
}

.hero-avatar {
  width: 100px; height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 3px solid var(--accent);
  overflow: hidden;
  box-shadow: 0 0 22px rgba(255,199,44,0.5);
  animation: spin-impulse 5s cubic-bezier(0.4,0,0.2,1) infinite;
}
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; }

@keyframes spin-impulse {
  0%   { transform: rotate(0deg); }
  60%  { transform: rotate(0deg); }
  65%  { transform: rotate(-12deg); }
  100% { transform: rotate(360deg); }
}

.hero h1 { font-size: 3rem; color: white; text-shadow: 2px 3px 6px rgba(0,0,0,0.5); text-align: left; line-height: 1.2; }
.dates   { font-size: 1.3rem; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.subtitle { font-size: 1rem; opacity: 0.85; margin-bottom: 20px; max-width: 580px; margin-left: auto; margin-right: auto; }

.hero-chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.hero-countdown { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 28px; }
.cd-block {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,199,44,0.35);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 68px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.cd-block span  { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; font-variant-numeric: tabular-nums; }
.cd-block small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.65; }
.cd-sep { font-size: 1.8rem; font-weight: 800; color: var(--accent); opacity: 0.6; line-height: 1; margin-bottom: 14px; }

/* =============================================
   REVEAL
   ============================================= */
.reveal-section { padding: 55px 20px; display: flex; justify-content: center; }

.reveal-container {
  max-width: 900px;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  border-radius: 24px;
  padding: 65px 50px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,26,92,0.4);
}

.reveal-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,199,44,0.1), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(227,24,55,0.08), transparent 50%);
  pointer-events: none;
}

.reveal-stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

.reveal-teaser { position: relative; z-index: 2; transition: opacity 0.4s, transform 0.4s; }

.reveal-mystery-icon {
  width: 110px; height: 110px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,199,44,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,199,44,0.2); transform: scale(1); }
  50%       { box-shadow: 0 0 50px rgba(255,199,44,0.55); transform: scale(1.05); }
}

.reveal-teaser h2 { font-size: 2.2rem; color: var(--accent); margin-bottom: 14px; }
.reveal-teaser p  {
  font-size: 1.05rem; opacity: 0.85; margin-bottom: 35px; line-height: 1.8;
  max-width: 560px; margin-left: auto; margin-right: auto;
}



/* --- BOUTONS PRINCIPAUX HARMONISÉS --- */

/* Styles partagés pour les 3 boutons */
.btn,
.reveal-scroll-btn--primary,
.reveal-btn {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 50px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FFC72C 0%, #FFE080 50%, #FFC72C 100%);
  color: #001A5C;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none; /* Essentiel pour le lien <a> du Hero */
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(255,199,44,0.5), inset 0 -3px 0 rgba(0,0,0,0.15);
}

/* On garde l'espacement pour le bouton de fin */
.reveal-scroll-btn--primary {
  margin-top: 35px;
}

/* Effets au survol */
.btn:hover,
.reveal-scroll-btn--primary:hover,
.reveal-btn:hover { 
  transform: scale(1.06) translateY(-3px); 
  box-shadow: 0 16px 45px rgba(255,199,44,0.7); 
}

/* Effets au clic */
.btn:active,
.reveal-scroll-btn--primary:active,
.reveal-btn:active { 
  transform: scale(1.02); 
}

/* Le trait de lumière magique */
.btn::after,
.reveal-scroll-btn--primary::after,
.reveal-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: rgba(255,255,255,0.45);
  transform: skewX(-20deg);
  animation: btn-sweep 2.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes btn-sweep {
  0%   { left: -75%; opacity: 0; }
  10%  { opacity: 1; }
  40%  { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}



.reveal-content { display: block; position: relative; z-index: 1; }
.reveal-content.visible {
  display: block;
  animation: reveal-appear 0.8s cubic-bezier(0.175,0.885,0.32,1.275) both;
}
@keyframes reveal-appear {
  0%   { opacity: 0; transform: scale(0.6) rotate(-3deg); }
  70%  { transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

.reveal-castle {
  font-size: 5rem; margin-bottom: 16px; display: block;
  animation: bounce-in 0.6s 0.2s cubic-bezier(0.175,0.885,0.32,1.275) both;
}
@keyframes bounce-in {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.reveal-content h2      { font-size: 2.6rem; color: white; margin-bottom: 8px; text-shadow: 0 3px 15px rgba(0,0,0,0.4); }
.reveal-content h2 span { color: var(--accent); display: block; }

.reveal-subtitle-tag {
  display: inline-block;
  background: rgba(255,199,44,0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 7px 22px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 14px 0 35px;
}

.reveal-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }

/* CARD OFFERT */
.card-offered {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFC72C);
  color: #001A5C;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(255,199,44,0.5);
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 2px 10px rgba(255,199,44,0.4); }
  50%       { box-shadow: 0 2px 22px rgba(255,199,44,0.9); }
}

.all-included-banner {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(255,199,44,0.15), rgba(255,199,44,0.25));
  border: 2px solid rgba(255,199,44,0.6);
  border-radius: 16px;
  padding: 18px 28px;
  animation: banner-glow 3s ease-in-out infinite;
}
@keyframes banner-glow {
  0%, 100% { border-color: rgba(255,199,44,0.4); box-shadow: none; }
  50%       { border-color: rgba(255,199,44,0.9); box-shadow: 0 0 25px rgba(255,199,44,0.25); }
}
.included-icon { font-size: 1.8rem; }
.included-text { display: flex; flex-direction: column; text-align: center; gap: 4px; }
.included-text strong { font-size: 1.2rem; color: var(--accent); letter-spacing: 0.5px; }
.included-text span   { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.reveal-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,199,44,0.25);
  border-radius: 18px;
  padding: 28px 18px;
  transition: transform 0.3s, background 0.3s;
  animation: card-appear 0.5s ease both;
}
.reveal-card:nth-child(1) { animation-delay: 0.5s; }
.reveal-card:nth-child(2) { animation-delay: 0.65s; }
@keyframes card-appear {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.reveal-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.14); }

.card-icon   { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.reveal-card strong { display: block; color: var(--accent); font-size: 0.95rem; margin-bottom: 8px; }
.reveal-card-list { list-style: none; padding: 0; margin: 0; text-align: left; display: flex; flex-direction: column; gap: 8px; }
.reveal-card-list li { font-size: 0.82rem; opacity: 0.85; line-height: 1.5; }

.hotel-clickable { cursor: pointer; }
.hotel-clickable:hover { border-color: var(--accent); background: rgba(255,255,255,0.18); }
.hotel-cta {
  display: inline-block; margin-top: 12px; font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700; letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,199,44,0.4); padding-bottom: 2px;
}

/* =============================================
   CÉLÉBRATION PLEIN ÉCRAN
   ============================================= */
.fullscreen-celebration {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,10,50,0.65), rgba(0,0,0,0.9));
  z-index: 9999; opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
}
.fullscreen-celebration.active { opacity: 1; }

.epic-blackout {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,10,30,0.7), rgba(0,0,0,0.95));
  z-index: 5; opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
}
.epic-blackout.active { opacity: 1; }

/* POST-REVEAL */
#post-reveal-content { display: block; opacity: 1; }
@keyframes fade-in-up {
  0%   { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 75px 20px; max-width: 1000px; margin: 0 auto; }
.section h2    { text-align: center; font-size: 2.2rem; color: var(--primary); margin-bottom: 10px; }
.section-intro { text-align: center; font-size: 1rem; color: #777; margin-bottom: 48px; }

/* PROGRAMME */
.program-section { background: white; border-radius: 20px; box-shadow: 0 10px 35px rgba(0,48,135,0.08); max-width: 1000px; margin: 0 auto; padding: 60px 45px; }
.cal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 20px; }
.cal-card { background: var(--light); border-radius: 18px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,48,135,0.08); border: 1px solid rgba(0,48,135,0.07); transition: box-shadow 0.3s ease; }
.cal-card:hover { box-shadow: 0 10px 36px rgba(0,48,135,0.15); }
.cal-header { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 24px 22px 18px; color: white; }
.cal-day-badge { display: inline-block; background: rgba(255,199,44,0.2); border: 1px solid var(--accent); color: var(--accent); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; padding: 3px 12px; border-radius: 20px; margin-bottom: 12px; }
.cal-subtitle { font-size: 0.8rem; opacity: 0.72; margin-top: 6px; }
.cal-slots { padding: 6px 0; background: white; }
.cal-slot { position: relative; border-bottom: 1px solid rgba(0,48,135,0.06); cursor: pointer; outline: none; }
.cal-slot:last-child { border-bottom: none; }
.cal-slot-row { display: flex; align-items: center; gap: 10px; padding: 13px 16px; transition: background 0.2s; }
.cal-time { font-size: 0.76rem; font-weight: 800; color: var(--primary); min-width: 60px; font-variant-numeric: tabular-nums; flex-shrink: 0; }
.cal-slot-icon { font-size: 1rem; flex-shrink: 0; width: 22px; text-align: center; }
.cal-slot-label { font-size: 0.84rem; font-weight: 600; color: var(--text); flex: 1; line-height: 1.3; }
.cal-arrow { font-size: 1.1rem; color: var(--primary); opacity: 0.35; transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease; flex-shrink: 0; line-height: 1; }
.cal-slot-detail { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; background: rgba(238,244,255,0.85); border-left: 3px solid var(--accent); }
.cal-slot-detail p { padding: 0 16px; font-size: 0.82rem; color: #555; line-height: 1.75; }
@media (hover: hover) {
  .cal-slot:hover .cal-slot-detail { max-height: 160px; padding: 10px 0; }
  .cal-slot:hover .cal-arrow { transform: rotate(90deg); opacity: 1; color: var(--accent-red); }
  .cal-slot:hover .cal-slot-row { background: rgba(0,48,135,0.04); }
}
.cal-slot.open .cal-slot-detail { max-height: 160px; padding: 10px 0; }
.cal-slot.open .cal-arrow { transform: rotate(90deg); opacity: 1; color: var(--accent-red); }
.cal-slot.open .cal-slot-row { background: rgba(0,48,135,0.04); }
.cal-slot:focus-visible .cal-slot-row { outline: 2px solid var(--accent); outline-offset: -2px; }
.cal-slot.special .cal-time { color: var(--accent-red); }
.cal-slot.special .cal-slot-row { background: rgba(255,199,44,0.04); }
.cal-slot.special:hover .cal-slot-row, .cal-slot.special.open .cal-slot-row { background: rgba(255,199,44,0.10); }

/* FAQ */
.faq-section { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border-radius: 13px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,48,135,0.07);
  border: 1px solid rgba(0,48,135,0.07);
}
.faq-question {
  width: 100%; background: none; border: none; padding: 20px 25px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--primary);
  text-align: left; gap: 15px; transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,199,44,0.1); }
.faq-item.open .faq-question { background: var(--primary); color: var(--accent); }
.faq-icon { font-size: 1.5rem; font-weight: 300; flex-shrink: 0; line-height: 1; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 18px 25px 22px; color: #555; font-size: 0.93rem; line-height: 1.75; }

/* FOOTER */
footer {
  background: var(--primary-dark); color: white;
  text-align: center; padding: 42px 20px; margin-top: 30px;
}
footer p { margin-bottom: 6px; }

/* =============================================
   MODAL HÔTEL
   ============================================= */
.hotel-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,10,40,0.85); z-index: 1000;
  backdrop-filter: blur(5px);
  align-items: center; justify-content: center; padding: 20px;
}
.hotel-modal-overlay.open { display: flex; animation: modal-fade-in 0.3s ease; }
@keyframes modal-fade-in { from { opacity: 0; } to { opacity: 1; } }

.hotel-modal {
  background: white; border-radius: 22px;
  width: 100%; max-width: 900px; max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: modal-slide-up 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
@keyframes modal-slide-up {
  from { opacity: 0; transform: translateY(50px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hotel-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  background: rgba(0,0,0,0.55); border: none; color: white;
  width: 38px; height: 38px; border-radius: 50%; font-size: 1rem;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.hotel-modal-close:hover { background: var(--accent-red); transform: scale(1.12); }

.hotel-slider {
  position: relative; height: 340px; overflow: hidden;
  border-radius: 22px 22px 0 0; background: var(--primary-dark);
}
.hotel-slides { width: 100%; height: 100%; }
.hotel-slide  { display: none; width: 100%; height: 100%; position: relative; }
.hotel-slide.active { display: block; animation: slide-in 0.45s ease; }
@keyframes slide-in { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
.hotel-slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,26,92,0.9));
  color: white; padding: 40px 22px 16px;
  font-size: 0.83rem; font-weight: 600;
}

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); border: none; color: white;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem;
  cursor: pointer; z-index: 5; transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(3px);
}
.slider-btn:hover { background: var(--primary); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 14px; }
.slider-next { right: 14px; }
.slider-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.dot.active { background: var(--accent); transform: scale(1.35); }

.hotel-info { padding: 28px 32px 36px; }
.hotel-info-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hotel-info h2 { font-size: 1.75rem; color: var(--primary); margin-bottom: 5px; }
.hotel-stars   { font-size: 0.85rem; color: #888; }
.hotel-tag-group { display: flex; gap: 8px; flex-wrap: wrap; }
.hotel-tag {
  background: var(--light); border: 1px solid rgba(0,48,135,0.15);
  color: var(--primary); padding: 6px 14px; border-radius: 20px;
  font-size: 0.77rem; font-weight: 600;
}
.tag-gold { background: rgba(255,199,44,0.15); border-color: var(--accent); color: #7a5800; }

.hotel-rooms-banner {
  display: flex; align-items: center; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 16px; padding: 22px 28px; color: white; margin-bottom: 26px;
}
.room-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 130px; gap: 4px; }
.room-icon  { font-size: 1.8rem; }
.room-item strong { font-size: 0.92rem; color: var(--accent); font-weight: 800; }
.room-item span   { font-size: 0.76rem; opacity: 0.8; }
.room-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

.hotel-info h3 {
  font-size: 0.8rem; font-weight: 700;
  color: var(--primary); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1.5px;
}
.hotel-amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 10px; }
.amenity {
  background: var(--light); border-radius: 10px; padding: 10px 14px;
  font-size: 0.83rem; font-weight: 600; color: var(--text);
  border-left: 3px solid var(--accent);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.4rem; }
  .program-section { padding: 45px 28px; margin: 0 20px; }
  .reveal-container { padding: 50px 28px; }
  .reveal-cards { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 768px) {
  .hero { min-height: 85vh; padding: 40px 20px 70px; }
  .hero h1 { font-size: 2rem; text-align: center; }
  .hero-title-group { flex-direction: column; gap: 14px; }
  .hero-avatar { width: 90px; height: 90px; }
  .dates { font-size: 1.1rem; }
  .cd-block span { font-size: 1.6rem; }
  .cd-block { min-width: 56px; padding: 8px 10px; }
  .btn, .reveal-scroll-btn--primary, .reveal-btn { 
    padding: 14px 30px; 
    font-size: 0.95rem; 
  }  .program-section { padding: 36px 18px; margin: 0 14px; }
  .trombi-inner { width: 135px; height: 135px; }
  .faq-question { font-size: 0.88rem; padding: 15px 16px; }
  .section { padding: 45px 14px; }
  .section h2 { font-size: 1.8rem; }
  .reveal-content h2 { font-size: 1.9rem; line-height: 1.05; }
  .hotel-modal { border-radius: 16px; max-height: 95vh; }
  .hotel-slider { height: 230px; }
  .hotel-info { padding: 18px 18px 26px; }
  .hotel-info h2 { font-size: 1.35rem; }
  .hotel-rooms-banner { padding: 16px 18px; gap: 16px; }
  .room-divider { display: none; }
  .hotel-amenities { grid-template-columns: repeat(2,1fr); }
  .hotel-info-header { flex-direction: column; }
  .cal-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero-egg { filter: drop-shadow(0 12px 18px rgba(0,0,0,0.18)); }
}
@media (max-width: 500px) {
  .all-included-banner { flex-direction: column; gap: 10px; padding: 16px 18px; }
  .included-icon { font-size: 1.4rem; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-chips { gap: 7px; }
  .hero-chip { font-size: 0.72rem; padding: 5px 11px; }
  .trombi-inner { width: 82px; height: 82px; }
  .disney-name { font-size: 0.55rem; }
  .hotel-slider { height: 185px; }
  .hotel-amenities { grid-template-columns: 1fr; }
  .hotel-rooms-banner { flex-direction: column; gap: 12px; }
  .room-item { min-width: unset; }
}


/* =============================================
HEADER EASTER EGGS
============================================= */
.hero { overflow: hidden; }
.hero-eggs { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-egg { position: absolute; width: var(--egg-size,120px); height: var(--egg-size,120px); border-radius: 999px; opacity: 0; pointer-events: auto; will-change: transform,opacity; animation: hero-egg-life var(--egg-dur,6800ms) ease-in-out forwards; filter: drop-shadow(0 16px 25px rgba(0,0,0,0.25)); cursor: pointer; }
.hero-egg-inner { width:100%; height:100%; border-radius:999px; overflow:hidden; background:rgba(255,255,255,0.08); border:2px solid rgba(255,199,44,0.6); backdrop-filter:blur(2px); transform-origin:center; }
.hero-egg-inner img { width:100%; height:100%; object-fit:contain; display:block; }
.hero-egg-inner.spin { animation: hero-egg-spin 600ms cubic-bezier(0.4,0,0.2,1); }
@keyframes hero-egg-spin { 0%{transform:rotate(0deg) scale(1);} 50%{transform:rotate(180deg) scale(1.1);} 100%{transform:rotate(360deg) scale(1);} }
@keyframes hero-egg-life {
  0%  { opacity:0; transform:translate3d(var(--x0,0px),var(--y0,0px),0) scale(0.3) rotate(var(--egg-rot,0deg)); }
  15% { opacity:0.95; transform:translate3d(0,0,0) scale(1) rotate(var(--egg-rot,0deg)); }
  50% { opacity:0.95; transform:translate3d(var(--x1,0px),var(--y1,0px),0) scale(1) rotate(var(--egg-rot,0deg)); }
  85% { opacity:0.95; transform:translate3d(var(--x2,0px),var(--y2,0px),0) scale(1) rotate(var(--egg-rot,0deg)); }
  100%{ opacity:0; transform:translate3d(var(--x3,0px),var(--y3,0px),0) scale(0.8) rotate(var(--egg-rot,0deg)); }
}
@media (prefers-reduced-motion:reduce) { .hero-egg { animation:none; opacity:0.1; } }

@media (max-width: 480px) { .trombi-inner { width: 125px; height: 125px; } }

/* =============================================
   BLOC TRAIN
   ============================================= */
.train-section { padding: 60px 20px; }

.train-form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,48,135,0.08);
  padding: 40px 45px;
  max-width: 780px;
  margin: 0 auto;
}

.train-field-group { margin-bottom: 32px; }

.train-label {
  display: block;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.train-name-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.train-name-chip {
  display: none;
}

.train-name-chip + label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 2px solid rgba(0,48,135,0.15);
  background: var(--light);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.train-name-chip:checked + label {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(0,48,135,0.3);
}

.train-name-chip + label:hover {
  border-color: var(--primary);
  background: rgba(0,48,135,0.06);
}

.train-journey {
  background: var(--light);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,48,135,0.07);
}

.train-journey-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.train-journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.train-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.train-field input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(0,48,135,0.12);
  border-radius: 10px;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.train-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,48,135,0.1);
}

.train-field input[readonly] {
  background: rgba(0,48,135,0.04);
  color: #888;
}

.train-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.train-summary {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: 16px;
  padding: 28px 32px;
  color: white;
}

.train-summary h4 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.train-summary-block {
  margin-bottom: 14px;
}

.train-summary-block strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.train-summary-block span {
  font-size: 1rem;
  font-weight: 600;
}

.train-summary-names {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.train-summary-names em {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 3px 12px;
  font-style: normal;
  font-size: 0.88rem;
}

.train-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 16px 0;
}

.train-edit-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: 30px;
  padding: 8px 20px;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s;
}

.train-edit-btn:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 640px) {
  .train-form-card { padding: 28px 20px; }
  .train-journey { padding: 18px 16px; }
  .train-journey-grid { grid-template-columns: 1fr; }
}

/* =============================================
   RECAP TRAINS
   ============================================= */
.recap-section { padding: 20px 20px 60px; }

.recap-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,48,135,0.08);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.recap-controls {
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px 0;
}

.recap-refresh-btn {
  background: var(--light);
  border: 1.5px solid rgba(0,48,135,0.15);
  border-radius: 30px;
  padding: 7px 18px;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.recap-refresh-btn:hover { background: rgba(0,48,135,0.06); border-color: var(--primary); }

.recap-loading, .recap-empty {
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
  font-style: italic;
  font-size: 0.95rem;
}

/* ── Board layout ── */
.recap-board {
  padding: 10px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* 3 cols: name | aller | retour */
.recap-row {
  display: grid;
  grid-template-columns: 88px 1fr 1fr;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,48,135,0.07);
  transition: background 0.15s;
}
.recap-row:nth-child(odd)  { background: var(--light); }
.recap-row:nth-child(even) { background: white; }
.recap-row:hover { background: rgba(0,48,135,0.05); }

.recap-who {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Journey block ── */
.rj {
  padding: 7px 10px;
  border-radius: 8px;
  border-left: 3px solid transparent;
  background: rgba(255,255,255,0.7);
  min-width: 0;
}
.rj--aller  { border-left-color: #22c55e; }
.rj--retour { border-left-color: #ef4444; }

.rj-head {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--primary);
  margin-bottom: 5px;
  white-space: nowrap;
}

.rj-date {
  background: var(--primary);
  color: white;
  border-radius: 20px;
  padding: 1px 7px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Stop + arrow row */
.rj-route {
  display: grid;
  grid-template-columns: 1fr 18px 1fr;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.rj-leg {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.rj-time {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.rj-station {
  font-size: 0.7rem;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rj-sep {
  height: 2px;
  background: linear-gradient(to right, rgba(0,48,135,0.2), rgba(0,48,135,0.5));
  border-radius: 2px;
  position: relative;
}
.rj-sep::after {
  content: '';
  position: absolute;
  right: -3px; top: -4px;
  border: 4px solid transparent;
  border-left: 6px solid rgba(0,48,135,0.5);
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .recap-board { padding: 8px 10px 14px; gap: 5px; }

  /* name on top, aller+retour side by side below */
  .recap-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 9px 10px;
    gap: 6px;
  }
  .recap-who {
    grid-column: 1 / -1;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0,48,135,0.08);
    padding-bottom: 5px;
    margin-bottom: 2px;
  }
  .rj { padding: 5px 7px; }
  .rj-time { font-size: 0.9rem; }
  .rj-station { font-size: 0.62rem; }
  .rj-head { font-size: 0.62rem; margin-bottom: 4px; }
  .rj-route { grid-template-columns: 1fr 14px 1fr; gap: 2px; }
}
