/* ============================================================
   HIPPOCUP 2027 — style.css
   Thème : Barbie × Nautique
   Palette : Rose Barbie, Bleu marine, Turquoise, Orange sunset
   Police : Playfair Display (titres) + Inter (texte)
   ============================================================ */

/* ─────────────────────────────────────────
   DESIGN TOKENS (variables CSS)
   → Modifier ces valeurs pour changer l'identité visuelle
───────────────────────────────────────── */
:root {
  /* Couleurs principales */
  --pink:          #E91E8C;   /* Rose Barbie signature */
  --pink-light:    #FFB3D9;   /* Rose clair */
  --pink-pale:     #FFF0F8;   /* Rose très pâle (fonds) */
  --pink-dark:     #C0156F;   /* Rose foncé (hover) */

  --navy:          #0A1628;   /* Bleu marine profond */
  --navy-mid:      #12263F;   /* Bleu marine intermédiaire */
  --navy-light:    #1E3A5F;   /* Bleu marine clair */

  --turquoise:     #00C2D4;   /* Turquoise vif */
  --turquoise-light: #7FECF5; /* Turquoise clair */

  --sunset:        #FF6B35;   /* Orange sunset */
  --sunset-light:  #FFD166;   /* Jaune chaud */

  --white:         #FAFAFA;
  --gray-50:       #F8F9FA;
  --gray-100:      #F1F3F5;
  --gray-200:      #E9ECEF;
  --gray-400:      #9CA3AF;
  --gray-600:      #6B7280;
  --gray-800:      #1F2937;

  /* Typographie */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, sans-serif;

  /* Espacements */
  --section-py:    5rem;
  --container-max: 1200px;
  --container-px:  1.5rem;

  /* Rayons de bordure */
  --radius-sm:     0.5rem;
  --radius-md:     1rem;
  --radius-lg:     1.5rem;
  --radius-xl:     2rem;
  --radius-full:   9999px;

  /* Ombres */
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:     0 16px 40px rgba(0,0,0,0.18);
  --shadow-pink:   0 8px 24px rgba(233,30,140,0.25);
  --shadow-turq:   0 8px 24px rgba(0,194,212,0.25);

  /* Transitions */
  --transition:    0.3s ease;
  --transition-slow: 0.6s ease;

  /* Header height */
  --header-h:      72px;
}


/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Respect préférence de réduction de mouvement */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}


/* ─────────────────────────────────────────
   UTILITAIRES LAYOUT
───────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

.section-light {
  background: var(--white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-pink {
  background: var(--pink-pale);
}


/* ─────────────────────────────────────────
   BOUTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(233,30,140,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm  { padding: 0.55rem 1.25rem; font-size: 0.875rem; }
.btn-lg  { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-xl  { padding: 1.125rem 2.75rem; font-size: 1.125rem; }

.btn:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 3px;
}


/* ─────────────────────────────────────────
   EN-TÊTES DE SECTION
───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(233,30,140,0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-eyebrow--light {
  color: var(--pink-light);
  background: rgba(233,30,140,0.2);
}

.section-eyebrow--dark {
  color: var(--pink-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-subtitle--light {
  color: rgba(255,255,255,0.7);
}


/* ─────────────────────────────────────────
   HEADER FIXE
───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

/* Classe ajoutée par JS quand on scrolle */
.site-header.scrolled {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.15em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-hippo { color: var(--white); }
.logo-cup   { color: var(--pink); }
.logo-year  {
  font-size: 0.85rem;
  color: var(--turquoise);
  font-weight: 700;
  font-family: var(--font-body);
  margin-left: 0.3em;
}

/* Nav desktop */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-nav {
  display: none;
  background: var(--navy);
  padding: 1.5rem var(--container-px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav a:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.mobile-nav .btn {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}


/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Image de fond */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay dégradé multi-couche (rose + marine) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(233,30,140,0.45) 0%,
      rgba(10,22,40,0.6) 50%,
      rgba(0,194,212,0.3) 100%
    );
}

/* Vagues du bas (signature design) */
.hero-waves {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  height: 120px;
}

.hero-waves svg {
  width: 100%;
  height: 100%;
}

.wave-1 {
  fill: rgba(233,30,140,0.25);
  animation: waveFloat 6s ease-in-out infinite;
}

.wave-2 {
  fill: var(--white);
  animation: waveFloat 8s ease-in-out infinite reverse;
}

@keyframes waveFloat {
  0%, 100% { d: path("M0,60 C360,120 1080,0 1440,60 L1440,120 L0,120 Z"); }
  50%       { d: path("M0,40 C300,100 1100,20 1440,70 L1440,120 L0,120 Z"); }
}

/* Contenu hero */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 2rem var(--container-px) 8rem;
  max-width: 800px;
  animation: heroEntrance 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Badge */
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-light);
  background: rgba(233,30,140,0.25);
  border: 1px solid rgba(255,179,217,0.4);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

/* Titre hero */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.title-accent {
  color: var(--pink-light);
}

.title-year {
  display: block;
  font-style: italic;
  font-size: 0.55em;
  color: var(--turquoise-light);
  letter-spacing: 0.05em;
}

/* Slogan */
.hero-slogan {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

/* CTA boutons */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.25rem 2.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: inline-flex;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--pink-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}


/* ─────────────────────────────────────────
   SECTION ABOUT
───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text .lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-light);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}


/* ─────────────────────────────────────────
   SECTION DESTINATION
───────────────────────────────────────── */
.destination-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.img-placeholder {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.img-placeholder:hover img {
  transform: scale(1.04);
}

.img-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(10,22,40,0.8);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.destination-text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.destination-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.destination-infos {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.destination-infos li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.destination-infos strong {
  color: var(--turquoise);
}

.info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────
   SECTION PROGRAMME
───────────────────────────────────────── */
.programme-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.day-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.day-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-light);
}

.day-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.day-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--pink-light);
  line-height: 1;
  flex-shrink: 0;
}

.day-name {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.day-theme {
  display: block;
  font-size: 0.9rem;
  color: var(--turquoise-light);
  font-weight: 600;
  margin-top: 0.1rem;
}

.day-activities {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.day-activities li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.day-activities li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 0.7rem;
  top: 0.1em;
}


/* ─────────────────────────────────────────
   SECTION ÉQUIPE
───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(233,30,140,0.1);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pink);
  border-color: var(--pink-light);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--pink-light);
}

/* Remplacez .avatar-placeholder par une <img> pour la vraie photo */
.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.team-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(233,30,140,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.875rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}


/* ─────────────────────────────────────────
   SECTION FAQ
───────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--pink-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
  cursor: pointer;
}

.faq-question:hover {
  color: var(--pink);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-size: 0.95rem;
}

.faq-answer a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}


/* ─────────────────────────────────────────
   SECTION CONTACT
───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--pink);
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-link {
  display: inline-block;
  color: var(--turquoise-light);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,0.4);
}

.social-link {
  color: var(--turquoise-light);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--white);
}

/* Grand CTA contact */
.contact-cta {
  text-align: center;
  padding: 2rem;
  background: rgba(233,30,140,0.12);
  border: 1px solid rgba(233,30,140,0.3);
  border-radius: var(--radius-xl);
}

.contact-cta p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--pink-light);
  margin-bottom: 1.25rem;
}


/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

.footer-brand .logo-hippo { color: var(--white); font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; }
.footer-brand .logo-cup   { color: var(--pink);  font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; }
.footer-brand .logo-year  { color: var(--turquoise); font-size: 0.9rem; font-weight: 700; margin-left: 0.3em; }

.footer-brand p {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 1rem;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--pink-light);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--pink);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--pink-light);
}


/* ─────────────────────────────────────────
   ANIMATIONS AU SCROLL (.reveal)
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Délais en cascade pour les grilles */
.about-cards .reveal:nth-child(1) { transition-delay: 0.05s; }
.about-cards .reveal:nth-child(2) { transition-delay: 0.12s; }
.about-cards .reveal:nth-child(3) { transition-delay: 0.19s; }
.about-cards .reveal:nth-child(4) { transition-delay: 0.26s; }

.team-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.team-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.team-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.team-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.team-grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.team-grid .reveal:nth-child(6) { transition-delay: 0.3s; }
.team-grid .reveal:nth-child(7) { transition-delay: 0.35s; }
.team-grid .reveal:nth-child(8) { transition-delay: 0.4s; }

.programme-timeline .reveal:nth-child(1) { transition-delay: 0.0s; }
.programme-timeline .reveal:nth-child(2) { transition-delay: 0.08s; }
.programme-timeline .reveal:nth-child(3) { transition-delay: 0.16s; }
.programme-timeline .reveal:nth-child(4) { transition-delay: 0.24s; }
.programme-timeline .reveal:nth-child(5) { transition-delay: 0.32s; }
.programme-timeline .reveal:nth-child(6) { transition-delay: 0.40s; }

.contact-grid .reveal:nth-child(1) { transition-delay: 0.0s; }
.contact-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.contact-grid .reveal:nth-child(3) { transition-delay: 0.2s; }


/* ─────────────────────────────────────────
   RESPONSIVE — TABLETTE (≤ 1024px)
───────────────────────────────────────── */
@media (max-width: 1024px) {

  :root {
    --section-py: 4rem;
  }

  .main-nav  { display: none; }
  .burger    { display: flex; }
  .btn-sm.btn.site-header { display: none; }

  /* Cacher le bouton d'inscription header sur tablette aussi */
  .header-inner > .btn { display: none; }

  .about-grid            { grid-template-columns: 1fr; gap: 2.5rem; }
  .destination-layout    { grid-template-columns: 1fr; gap: 2.5rem; }
  .programme-timeline    { grid-template-columns: repeat(2, 1fr); }
  .team-grid             { grid-template-columns: repeat(3, 1fr); }
  .contact-grid          { grid-template-columns: 1fr 1fr; }
  .footer-inner          { grid-template-columns: 1fr 1fr; }
  .footer-brand          { grid-column: span 2; }

}


/* ─────────────────────────────────────────
   RESPONSIVE — MOBILE (≤ 640px)
───────────────────────────────────────── */
@media (max-width: 640px) {

  :root {
    --section-py:    3rem;
    --container-px:  1rem;
    --header-h:      60px;
  }

  .hero-content { padding-bottom: 6rem; }
  .hero-stats   { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  .about-cards           { grid-template-columns: 1fr; }
  .programme-timeline    { grid-template-columns: 1fr; }
  .team-grid             { grid-template-columns: 1fr; }
  .contact-grid          { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: auto; }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .section-title { font-size: 1.75rem; }

  .day-card { break-inside: avoid; }
}
