/* Palette : noir, jaune, blanc */
:root {
  --noir: #111;
  --jaune: #ffd600;
  --blanc: #fff;
}

/* Scroll fluide pour les ancres */
html {
  scroll-behavior: smooth;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--noir);
  color: var(--blanc);
  min-height: 100vh;
}
header {
  background: var(--noir);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  min-height: 80px; /* Hauteur fixe pour un meilleur alignement */
}

.icon-svg {
  width: 26px !important;
  height: 26px !important;
  display: block;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1.5rem;
  height: 60px; /* Même hauteur que le logo et le bouton menu */
  align-items: center;
}

.icon-link {
  color: var(--blanc);
  display: flex;
  align-items: center;
  transition: color 0.2s;
  opacity: 0.85;
  padding: 0.1rem;
}

.icon-link:hover {
  color: var(--jaune);
  opacity: 1;
}

@media (max-width: 900px) {
  .social-icons {
    gap: 0.7rem;
    margin-left: 0.5rem;
  }
  .icon-svg {
    width: 22px !important;
    height: 22px !important;
  }
}

@media (max-width: 600px) {
  .social-icons {
    display: none;
  }
  }
  
  /* Masquer les éléments mobiles sur desktop */
  @media (min-width: 901px) {
    .mobile-social-icons {
      display: none !important;
    }
    
    .menu-toggle {
      display: none !important;
    }
    
    /* Forcer la suppression complète sur desktop */
    .menu-toggle,
    .mobile-social-icons {
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
      position: absolute !important;
      left: -9999px !important;
    }
    
    /* FORCER LA RESTAURATION DU MENU DESKTOP */
    .navbar .nav-links,
    nav .nav-links,
    header .nav-links,
    .nav-links {
      display: flex !important;
      flex-direction: row !important;
      gap: 1.5rem !important;
      margin: 0 !important;
      padding: 0 !important;
      position: static !important;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      width: auto !important;
      height: auto !important;
      min-height: auto !important;
      max-height: none !important;
      background: transparent !important;
      border: none !important;
      z-index: auto !important;
      overflow: visible !important;
      overflow-y: visible !important;
      list-style: none !important;
    }
    
    .navbar .nav-links li,
    nav .nav-links li,
    header .nav-links li,
    .nav-links li {
      margin: 0 !important;
      text-align: left !important;
    }
    
    .navbar .nav-links a,
    nav .nav-links a,
    header .nav-links a,
    .nav-links a {
      display: inline !important;
      padding: 0 !important;
      font-size: inherit !important;
      font-weight: 500 !important;
      color: var(--blanc) !important;
      background: transparent !important;
      border: none !important;
      border-radius: 0 !important;
      transform: none !important;
      text-decoration: none !important;
    }
    
    .navbar .nav-links a:hover,
    nav .nav-links a:hover,
    header .nav-links a:hover,
    .nav-links a:hover {
      background: transparent !important;
      color: var(--jaune) !important;
      border-color: transparent !important;
      transform: none !important;
    }
    
    /* RESTAURER LE STYLE NORMAL DE LA BOUTIQUE SUR DESKTOP */
    .navbar .nav-links .nav-boutique a,
    nav .nav-links .nav-boutique a,
    header .nav-links .nav-boutique a,
    .nav-links .nav-boutique a {
      background: transparent !important;
      border: none !important;
      color: var(--blanc) !important;
      font-weight: 500 !important;
    }
    
    .navbar .nav-links .nav-boutique a:hover,
    nav .nav-links .nav-boutique a:hover,
    header .nav-links .nav-boutique a:hover,
    .nav-links .nav-boutique a:hover {
      background: transparent !important;
      color: var(--jaune) !important;
      transform: none !important;
    }
  }

.logo img {
  height: 60px; /* Même hauteur que le bouton menu */
  width: auto;
  transition: transform 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  height: 60px; /* Hauteur fixe pour l'alignement */
}

.logo:hover img {
  transform: scale(1.05);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--jaune);
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s;
}
.menu-toggle:focus {
  outline: 2px solid var(--jaune);
}
.menu-toggle.open {
  transform: rotate(90deg);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  /* RESTAURATION FORCÉE DU MENU DESKTOP */
  flex-direction: row !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  background: transparent !important;
  border: none !important;
  z-index: auto !important;
  overflow: visible !important;
  overflow-y: visible !important;
}

.nav-links a {
  color: var(--blanc);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  /* RESTAURATION FORCÉE DES LIENS DESKTOP */
  display: inline !important;
  padding: 0 !important;
  font-size: inherit !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  transform: none !important;
}

.nav-links a:hover {
  color: var(--jaune);
  /* RESTAURATION FORCÉE DU HOVER DESKTOP */
  background: transparent !important;
  border-color: transparent !important;
  transform: none !important;
}
.hero {
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  background: linear-gradient(120deg, var(--noir) 60%, var(--jaune) 100%);
}
.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-height: 340px;
  padding: 2rem 0;
}
.hero-text {
  flex: 1;
  text-align: left;
}
.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--jaune);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}
.slogan {
  font-size: 1.3rem;
  color: var(--blanc);
  margin-bottom: 1.5rem;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.15);
}
.hero-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 350px;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.btn-hero, .btn {
  font-size: 1.2rem;
  padding: 1rem 2.2rem;
  border-radius: 2rem;
  border: 2px solid var(--jaune);
  background: var(--jaune);
  color: var(--noir);
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-hero:hover, .btn:hover {
  background: var(--noir);
  color: var(--jaune);
  transform: scale(1.05);
}
footer {
  background: #101010;
  color: #e0e0e0;
  padding: 1.5rem 0 1rem 0;
  border-top: 2px solid #ffd600;
  font-size: 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.footer-pro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  flex-wrap: wrap;
}
.footer-legal-block {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.footer-logo-pro {
  width: 80px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px #0006;
  object-fit: cover;
}
.footer-legal {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e0e0;
}
.footer-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  padding-bottom: 2px;
}
.footer-link:hover {
  color: #ffd600;
  border-bottom: 2px solid #ffd600;
}
@media (max-width: 800px) {
  .footer-pro {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
  }
  .footer-legal-block {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-legal {
    text-align: center;
  }
  .footer-links {
    gap: 0.8rem;
  }
}
.footer-infos {
  text-align: center;
  margin-bottom: 0.5rem;
}
.socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.socials img {
  width: 32px;
  height: 32px;
  filter: grayscale(1) brightness(1.5);
  transition: filter 0.2s, transform 0.2s;
}
.socials img:hover {
  filter: none;
  transform: scale(1.1);
}
.choisir {
  background: var(--noir);
  color: var(--blanc);
  padding: 2.5rem 1rem 2rem 1rem;
  text-align: center;
}
.choisir h2 {
  color: var(--jaune);
  font-size: 2rem;
  margin-bottom: 2rem;
}
.choisir-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.choisir-item {
  background: #181818;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 200px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.choisir-item:hover {
  background: var(--jaune);
  color: var(--noir);
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.choisir-item:hover h3 {
  color: var(--noir);
}
.choisir-icon {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border: 2px solid var(--jaune);
}
.choisir-item h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--jaune);
  font-weight: 700;
}
.bandeau-cta {
  background: linear-gradient(90deg, var(--jaune) 60%, var(--noir) 100%);
  color: var(--noir);
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2rem 0;
}
.bandeau-texte {
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 1px 2px 8px rgba(255,255,255,0.10);
}
.btn-cta {
  background: var(--jaune);
  color: var(--noir);
  border: 2px solid var(--jaune);
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-weight: bold;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.btn-cta:hover {
  background: var(--noir);
  color: var(--jaune);
  border: 2px solid var(--jaune);
  transform: scale(1.05);
}

/* Bouton CTA sombre (noir -> jaune au hover) */
.btn-cta-dark {
  background: var(--noir);
  color: var(--jaune);
  border: 2px solid var(--noir);
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-weight: bold;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-dark:hover {
  background: var(--jaune);
  color: var(--noir);
  border: 2px solid var(--jaune);
  transform: scale(1.05);
}
.temoignage {
  background: #181818 url('images/ambiance-club-corte.jpg') center/cover no-repeat;
  padding: 3rem 1rem 2.5rem 1rem;
  position: relative;
  color: var(--blanc);
  text-align: center;
}
.temoignage-bg {
  background: rgba(0,0,0,0.7);
  border-radius: 1rem;
  display: inline-block;
  padding: 2rem 2.5rem;
  max-width: 600px;
  margin: auto;
}
.temoignage blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--jaune);
  margin: 0;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.15);
}
.temoin {
  display: block;
  margin-top: 1rem;
  color: var(--blanc);
  font-size: 1rem;
  font-style: normal;
}
.mini-map {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--noir);
  padding: 1.5rem 0 0.5rem 0;
}
.mini-map iframe {
  border: 2px solid var(--jaune);
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  height: 180px;
}
.hero-banner {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(to right, #000000, #f1c40f);
}
.hero-image {
  max-width: 1000px;
  width: 90%;
  height: auto;
  margin: 0 auto 2rem auto;
  display: block;
  border-radius: 8px;
}
.hero-content h1 {
  font-size: 3.5rem;
  color: var(--jaune);
  margin-bottom: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 2px;
}
.hero-content p {
  font-size: 1.2rem;
  color: white;
}
.cta-button {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  margin-top: 1rem;
  background-color: #f1c40f;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.cta-button:hover {
  background-color: #ffd700;
}
h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}
.hero-banner {
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(241,196,15,0.9)), url('images/fond-boxe.jpg') center/cover no-repeat;
}
/* --- SLIDER ACCUEIL --- */
.slider {
  width: 100vw;
  max-width: 100%;
  min-height: 350px;
  position: relative;
  margin: 0 auto 2rem auto;
  overflow: hidden;
  background: #111;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 60vw;
  max-height: 480px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(.4,0,.2,1);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide img {
  width: 100vw;
  max-width: 100%;
  height: 60vw;
  max-height: 480px;
  min-height: 260px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px rgba(0,0,0,0.25);
  filter: brightness(0.85);
  transition: transform 1.2s cubic-bezier(.4,0,.2,1), filter 0.5s;
}
.slide.active img {
  transform: scale(1.04);
  filter: brightness(1);
}
.slider-slogan {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  text-align: center;
  z-index: 3;
  width: 90vw;
  max-width: 700px;
  text-shadow: 0 4px 24px #000, 0 1px 0 #111;
  pointer-events: none;
}
.slider-slogan h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #ffd600;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.slider-slogan p {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  z-index: 4;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ffd600;
  opacity: 0.7;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  outline: none;
}
.dot.active, .dot:focus {
  background: #ffd600;
  opacity: 1;
}
@media (max-width: 900px) {
  .slider-wrapper, .slide img {
    height: 45vw;
    max-height: 260px;
    min-height: 160px;
  }
  .slider-slogan h1 {
    font-size: 2.5rem;
  }
  
  .hero-text h1, .hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 600px) {
  .slider-wrapper, .slide img {
    height: 38vw;
    max-height: 180px;
    min-height: 100px;
  }
  .slider-slogan h1 {
    font-size: 2rem;
  }
  
  .hero-text h1, .hero-content h1 {
    font-size: 2rem;
  }
}
/* Suppression fade-in et animation */
.fade-in { opacity: 1 !important; transform: none !important; animation: none !important; }
.cta-block {
  background: var(--jaune);
  color: #000;
  text-align: center;
  padding: 3rem 1rem;
}
.cta-block h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-block p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.about-section {
  background: #111;
  color: #eee;
  padding: 4rem 1rem;
}
.about-section .about-container {
  background: rgba(30,30,30,0.98);
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.about-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #f1c40f;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #000;
}
.about-section p {
  max-width: 800px;
  margin: 0.5rem auto;
  line-height: 1.7;
  text-align: center;
  font-size: 1.13rem;
  color: #fff;
  text-shadow: 0 2px 8px #000;
}
.banniere-visuelle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 1.5rem auto;
}
.banniere-visuelle img {
  width: 80%;
  max-width: 900px;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  display: block;
}
.presentation {
  max-width: 1000px;
  margin: 2.5rem auto 0 auto;
  padding: 0 2rem 2.5rem 2rem;
  background: #181818;
  border-top: 4px solid #ffd600;
  border-radius: 1.2rem 1.2rem 0 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: center;
}
.presentation h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6em;
  color: #ffd600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.btn-decouvrir {
  font-size: 1.15rem;
  padding: 0.8rem 2.2rem 0.8rem 1.7rem;
  border-radius: 2rem;
  border: 2px solid #ffd600;
  background: #ffd600;
  color: #111;
  font-weight: bold;
  margin-top: 1.2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.btn-decouvrir .picto-boxe {
  font-size: 1.3em;
  margin-right: 0.2em;
  vertical-align: middle;
}
.btn-decouvrir:hover {
  background: #111;
  color: #ffd600;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
  @media (max-width: 900px) {
  .navbar {
    flex-direction: row; /* Garder en ligne pour l'alignement */
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 1rem;
    min-height: 80px; /* Hauteur fixe pour l'alignement */
  }
  
  /* Afficher les éléments mobiles sur mobile */
  .mobile-social-icons {
    display: flex !important;
    order: 2; /* Positionner après le logo */
    align-items: center;
    height: 60px; /* Même hauteur que le logo */
  }
  
  .menu-toggle {
    display: flex !important;
    order: 3; /* Positionner en dernier */
    align-items: center;
    height: 60px; /* Même hauteur que le logo */
  }
  
  /* Masquer les éléments desktop sur mobile */
  .social-icons {
    display: none !important;
  }
  
  /* Les liens de navigation sont gérés par les règles mobiles plus bas */
  
  /* Alignement parfait des éléments mobiles */
  .logo,
  .mobile-social-icons,
  .menu-toggle {
    display: flex !important;
    align-items: center !important;
    height: 60px !important;
  }
  
  /* Masquer le slider sur mobile pour libérer le z-index */
  .slider,
  .slider-wrapper,
  .slide,
  .slider-slogan,
  .slider-dots {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: -1 !important;
  }
  
  /* RÈGLE SPÉCIALE POUR L'ACCUEIL - Forcer l'affichage du menu */
  body:has(.hero) .navbar .nav-links.open,
  body:has(.slider) .navbar .nav-links.open,
  body:has(.club-presentation) .navbar .nav-links.open,
  .hero ~ .navbar .nav-links.open,
  .slider ~ .navbar .nav-links.open,
  .club-presentation ~ .navbar .nav-links.open {
    display: flex !important;
    z-index: 999999 !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--noir) !important;
    border: 3px solid var(--jaune) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    clip: auto !important;
    overflow: visible !important;
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }
}
  /* RÈGLES MOBILES POUR LE MENU - FORCER L'AFFICHAGE */
  .nav-links {
    flex-direction: column !important;
    width: 100% !important;
    display: none !important; /* Masqué par défaut sur mobile */
    background: var(--noir) !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    padding: 2rem 1rem !important;
    border-top: 3px solid var(--jaune) !important;
    z-index: 999999 !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
    min-height: 300px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    scrollbar-color: var(--jaune) var(--noir) !important;
  }
  
  /* Style de la scrollbar pour le menu mobile */
  .nav-links::-webkit-scrollbar {
    width: 8px !important;
  }
  
  .nav-links::-webkit-scrollbar-track {
    background: var(--noir) !important;
  }
  
  .nav-links::-webkit-scrollbar-thumb {
    background: var(--jaune) !important;
    border-radius: 4px !important;
  }
  
  .nav-links::-webkit-scrollbar-thumb:hover {
    background: #e6c200 !important;
  }
  
  /* Styles professionnels pour les liens du menu mobile - FORCER L'AFFICHAGE */
  .nav-links li {
    margin: 0.8rem 0 !important;
    text-align: center !important;
  }
  
  .nav-links a {
    display: block !important;
    padding: 1rem 1.5rem !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--blanc) !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    background: rgba(255, 214, 0, 0.05) !important;
    border: 1px solid transparent !important;
  }
  
  .nav-links a:hover {
    background: rgba(255, 214, 0, 0.15) !important;
    color: var(--jaune) !important;
    border-color: var(--jaune) !important;
    transform: translateX(10px) !important;
  }
  
  /* Style spécial pour la boutique - MOBILE SEULEMENT */
  @media (max-width: 900px) {
    .nav-links .nav-boutique a {
      background: rgba(255, 214, 0, 0.2) !important;
      border: 2px solid var(--jaune) !important;
      color: var(--jaune) !important;
      font-weight: 700 !important;
    }
    
    .nav-links .nav-boutique a:hover {
      background: var(--jaune) !important;
      color: var(--noir) !important;
      transform: scale(1.05) !important;
    }
  }
  .nav-links.open {
    display: flex !important;
    background: var(--noir) !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: 3px solid var(--jaune) !important;
    color: var(--blanc) !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    pointer-events: auto !important;
    transform: none !important;
    z-index: 999999 !important;
  }
  
  /* SOLUTION UNIQUE ET EFFICACE POUR LE MENU MOBILE */
  
  /* 1. Empêcher le défilement de la page quand le menu est ouvert */
  body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
  }
  
  /* 2. RÈGLE UNIQUE ET SIMPLE pour le menu mobile */
  @media (max-width: 900px) {
    /* Configuration du navbar mobile */
    .navbar {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      position: relative;
      padding: 1rem;
      min-height: 80px;
    }
    
    /* Afficher les éléments mobiles */
    .mobile-social-icons {
      display: flex !important;
      order: 2;
      align-items: center;
      height: 60px;
    }
    
    .menu-toggle {
      display: flex !important;
      order: 3;
      align-items: center;
      height: 60px;
    }
    
    /* Masquer les éléments desktop */
    .social-icons {
      display: none !important;
    }
    
    /* Alignement parfait des éléments mobiles */
    .logo,
    .mobile-social-icons,
    .menu-toggle {
      display: flex !important;
      align-items: center !important;
      height: 60px !important;
    }
    
    /* Masquer le slider sur mobile */
    .slider,
    .slider-wrapper,
    .slide,
    .slider-slogan,
    .slider-dots {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      z-index: -1 !important;
    }
    
      /* RÈGLE SPÉCIALE POUR L'ACCUEIL - Forcer l'affichage du menu */
  .nav-links.open {
    display: flex !important;
    z-index: 999999 !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--noir) !important;
    border: 3px solid var(--jaune) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    clip: auto !important;
    overflow: visible !important;
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }
  
  /* RÈGLE ULTRA-SPÉCIALE POUR L'INDEX - Z-index maximal */
  body:has(.slider) .nav-links.open,
  body:has(.slider-wrapper) .nav-links.open,
  body:has(.slider-slogan) .nav-links.open,
  body:has(.slider-dots) .nav-links.open,
  .slider ~ .navbar .nav-links.open,
  .slider-wrapper ~ .navbar .nav-links.open {
    z-index: 9999999 !important; /* Z-index ultra-élevé pour l'index */
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--noir) !important;
    border: 3px solid var(--jaune) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    clip: auto !important;
    overflow: visible !important;
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    /* FORCER L'AFFICHAGE SUR L'INDEX */
    display: flex !important;
  }
  
  /* FORCER LES INTERACTIONS SUR MOBILE - Résoudre le problème pointer-events */
  .navbar .menu-toggle,
  .navbar .nav-links,
  .navbar .nav-links.open,
  .navbar .nav-links li,
  .navbar .nav-links a {
    pointer-events: auto !important;
    user-select: auto !important;
  }
}
    header .nav-links.open,
    .nav-links.open,
    ul.nav-links.open,
    nav ul.nav-links.open,
    .navbar ul.nav-links.open,
    .navbar .nav-links.open,
    nav .nav-links.open,
    header .nav-links.open,
    .nav-links.open,
    .navbar .nav-links.open,
    nav .nav-links.open,
    header .nav-links.open,
    .nav-links.open {
      /* FORCER L'AFFICHAGE ABSOLUMENT */
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      
      /* POSITION ET TAILLE FORCÉES */
      position: fixed !important;
      top: 64px !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      height: auto !important;
      min-height: 300px !important;
      max-height: 85vh !important;
      
      /* STYLE VISUEL FORCÉ */
      background: var(--noir) !important;
      border: 3px solid var(--jaune) !important;
      z-index: 999999 !important;
      
      /* SCROLL FORCÉ */
      overflow: visible !important;
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
      
      /* SUPPRIMER TOUTES LES TRANSFORMATIONS */
      transform: none !important;
      clip: auto !important;
      
      /* SUPPRIMER TOUS LES MASQUAGES */
      mask: none !important;
      -webkit-mask: none !important;
      filter: none !important;
      backdrop-filter: none !important;
    }
  }
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--noir) !important;
    border: 3px solid var(--jaune) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    clip: auto !important;
    overflow: visible !important;
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }
  .menu-toggle {
    display: flex !important; /* Visible par défaut sur mobile */
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
    background: var(--noir) !important;
    padding: 15px 18px !important;
    border-radius: 8px !important;
    border: 2px solid var(--jaune) !important;
    color: var(--jaune) !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(255, 214, 0, 0.3) !important;
    /* Alignement avec le logo */
    height: 60px !important;
    width: 60px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .menu-toggle:hover {
    background: var(--jaune) !important;
    color: var(--noir) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.5) !important;
  }
  
  .menu-toggle.open {
    background: var(--jaune) !important;
    color: var(--noir) !important;
    transform: rotate(90deg) !important;
  }
  
  /* Styles pour les icônes sociales entre le logo et le bouton menu - VISIBLE PAR DÉFAUT */
  .mobile-social-icons {
    display: flex; /* Visible par défaut sur mobile */
    align-items: center;
    gap: 1rem;
    margin: 0 1rem;
  }
  
  .mobile-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--noir);
    border: 2px solid var(--jaune);
    border-radius: 50%;
    color: var(--jaune);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .mobile-social-icons a:hover {
    background: var(--jaune);
    color: var(--noir);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 214, 0, 0.4);
  }
  
  .mobile-social-icons svg {
    width: 20px;
    height: 20px;
  }
  
  /* Styles pour les icônes sociales dans le menu mobile */

  .hero-content {
    flex-direction: column;
    gap: 1.5rem;
    min-height: unset;
  }
  .hero-img {
    max-width: 90vw;
  }
  .choisir-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .temoignage-bg {
    padding: 1.2rem 1rem;
  }
  .banniere-visuelle img {
    width: 98%;
  }
  


  .presentation {
    padding: 0 0.5rem 2rem 0.5rem;
  }
  .about-section .about-container {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}
@media (max-width: 600px) {
  .hero-img {
    max-width: 100%;
  }
  .navbar {
    padding: 0.5rem;
  }
  
  /* Masquer la bannière sur mobile */
  .banniere-visuelle {
    display: none;
  }
} 
.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}
.about-event {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: rgba(255,214,0,0.08);
  border-left: 4px solid #ffd600;
  border-radius: 0.8rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.about-event:hover {
  background: rgba(255,214,0,0.18);
}
.about-icon {
  font-size: 2.1rem;
  margin-right: 0.2em;
  color: #ffd600;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px #0008);
}
.about-event p {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.6;
  text-shadow: 0 2px 8px #000;
}
.about-adhesion {
  margin-top: 2.5rem;
  text-align: center;
  color: #ffd600;
  font-size: 1.08rem;
}
.about-adhesion a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.2s;
}
.about-adhesion a:hover {
  color: #ffd600;
}
@media (max-width: 600px) {
  .about-event {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 0.7rem;
  }
  .about-icon {
    font-size: 1.5rem;
  }
} 
.footer-legal {
  background: #111;
  color: #fff;
  padding: 2.2rem 1rem 1.2rem 1rem;
  text-align: center;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.footer-copyright {
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}
.footer-siret {
  font-size: 0.95rem;
  color: #ffd600;
  margin-top: 0.1rem;
  text-align: center;
  font-weight: 600;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  padding-bottom: 2px;
}
.footer-link:hover {
  color: #ffd600;
  border-bottom: 2px solid #ffd600;
}
.footer-slogan {
  color: #ffd600;
  font-size: 1.1rem;
  font-style: italic;
  margin: 1.2rem 0 0.2rem 0;
  letter-spacing: 0.01em;
  opacity: 0.92;
}
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 0.7rem;
  }
  .footer-slogan {
    font-size: 1rem;
  }
}

/* Hero Banner pour les pages */
.hero-banner {
  position: relative;
  background: linear-gradient(135deg, var(--noir) 0%, #333 50%, var(--jaune) 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  padding: 120px 20px 80px;
  text-align: center;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--jaune);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--blanc);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

/* Section Disciplines */
.disciplines-section {
  padding: 4rem 0;
  background: var(--noir);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--jaune);
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.discipline-card {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 214, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discipline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 214, 0, 0.2);
}

.discipline-header {
  background: linear-gradient(90deg, var(--jaune), #ffed4e);
  padding: 1.5rem 2rem;
}

.disciplines-section .discipline-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--noir);
  margin: 0;
  letter-spacing: 1px;
}

.discipline-content {
  padding: 2rem;
}

.discipline-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--blanc);
}

.practice-types {
  margin-top: 2rem;
}

.practice-types h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--jaune);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.practice-type {
  background: rgba(255, 214, 0, 0.05);
  border-left: 4px solid var(--jaune);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0 8px 8px 0;
}

.practice-type h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--jaune);
  margin: 0 0 0.5rem 0;
  letter-spacing: 1px;
}

.practice-type p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Section des bénéfices */
.benefits-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 214, 0, 0.05);
  border-left: 4px solid var(--jaune);
  border-radius: 0 8px 8px 0;
}

.benefits-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--jaune);
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-item {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--blanc);
}

.benefit-item:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--jaune);
  font-weight: bold;
  font-size: 1.1rem;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

/* Grille des disciplines */
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.disciplines-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Responsive pour les disciplines */
@media (max-width: 768px) {
  .disciplines-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .discipline-card {
    margin-bottom: 1.5rem;
  }
  
  .discipline-content {
    padding: 1.5rem;
  }
  
  .discipline-header {
    padding: 1rem 1.5rem;
  }
  
  .disciplines-section .discipline-title {
    font-size: 1.5rem;
  }
}

/* Section de citation inspirante */
.quote-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 4rem 0;
  margin-top: 2rem;
}

.boxing-quote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.boxing-quote p {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--blanc);
  margin: 0;
  position: relative;
}

.boxing-quote p::before {
  content: '"';
  font-size: 4rem;
  color: var(--jaune);
  position: absolute;
  top: -20px;
  left: -30px;
  font-family: serif;
}

.boxing-quote p::after {
  content: '"';
  font-size: 4rem;
  color: var(--jaune);
  position: absolute;
  bottom: -40px;
  right: -30px;
  font-family: serif;
}

.boxing-quote cite {
  display: block;
  font-size: 1.1rem;
  color: var(--jaune);
  font-weight: 600;
  margin-top: 2rem;
  font-style: normal;
}

/* Responsive pour la citation */
@media (max-width: 768px) {
  .quote-section {
    padding: 3rem 0;
    margin-top: 1.5rem;
  }
  
  .boxing-quote p {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  .boxing-quote p::before,
  .boxing-quote p::after {
    font-size: 3rem;
  }
  
  .boxing-quote p::before {
    top: -15px;
    left: -20px;
  }
  
  .boxing-quote p::after {
    bottom: -30px;
    right: -20px;
  }
}

/* Section Témoignage */
.testimonial-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 4rem 0;
  text-align: center;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial p {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--blanc);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial p::before {
  content: '"';
  font-size: 4rem;
  color: var(--jaune);
  position: absolute;
  top: -20px;
  left: -30px;
  font-family: serif;
}

.testimonial cite {
  font-size: 1.1rem;
  color: var(--jaune);
  font-weight: 600;
}

/* Section CTA */
.cta-section {
  background: linear-gradient(135deg, var(--jaune) 0%, #ffed4e 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--noir);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--noir);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--noir);
  color: var(--jaune);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--noir);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  background: var(--jaune);
  color: var(--noir);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 0, 0.3);
  border-color: var(--jaune);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(255, 214, 0, 0.2);
} 

.cta-button.secondary {
  background: var(--noir);
  color: var(--jaune);
  border-color: var(--noir);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button.secondary:hover {
  background: var(--jaune);
  color: var(--noir);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 0, 0.3);
  border-color: var(--jaune);
}

.cta-button.secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Styles responsives pour les nouvelles sections */
@media (max-width: 900px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .disciplines-section .discipline-title {
    font-size: 1.6rem;
  }
  
  .discipline-content {
    padding: 1.5rem;
  }
  
  .discipline-content p {
    font-size: 1rem;
  }
  
  .practice-types h4 {
    font-size: 1.3rem;
  }
  
  .practice-type h5 {
    font-size: 1.1rem;
  }
  
  .testimonial p {
    font-size: 1.2rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .hero-banner {
    padding: 80px 15px 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .disciplines-section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .discipline-header {
    padding: 1rem 1.5rem;
  }
  
  .disciplines-section .discipline-title {
    font-size: 1.4rem;
  }
  
  .discipline-content {
    padding: 1rem;
  }
  
  .discipline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .practice-types h4 {
    font-size: 1.2rem;
  }
  
  .practice-type {
    padding: 1rem;
  }
  
  .practice-type h5 {
    font-size: 1rem;
  }
  
  .practice-type p {
    font-size: 0.9rem;
  }
  
  .testimonial-section {
    padding: 2rem 0;
  }
  
  .testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .testimonial p::before {
    font-size: 3rem;
    top: -15px;
    left: -20px;
  }
  
  .cta-section {
    padding: 2rem 0;
  }
  
  .cta-section h2 {
    font-size: 1.6rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
} 

/* Section Entraîneurs */
.entraineurs-section {
  padding: 4rem 0;
  background: var(--noir);
}

.entraineur-card {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  margin-bottom: 3rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 214, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.entraineur-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 214, 0, 0.2);
}

.entraineur-header {
  background: linear-gradient(90deg, var(--jaune), #ffed4e);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.entraineur-photo {
  flex-shrink: 0;
}

.entraineur-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--noir);
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.entraineur-no-photo {
  width: 120px;
  height: 120px;
  background: linear-gradient(145deg, #1a1a1a, #000);
  border: 4px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.entraineur-no-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255, 214, 0, 0.05) 8px,
    rgba(255, 214, 0, 0.05) 16px
  );
}

.no-photo-text {
  color: var(--jaune);
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.entraineur-info {
  flex: 1;
}

.entraineur-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--noir);
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
}

.entraineur-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--noir);
  color: var(--jaune);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.entraineur-content {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.qualifications, .experience {
  background: rgba(255, 214, 0, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--jaune);
}

.qualifications h4, .experience h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--jaune);
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
}

.qualifications-list, .experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qualifications-list li, .experience-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 214, 0, 0.1);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--blanc);
}

.qualifications-list li:last-child, .experience-list li:last-child {
  border-bottom: none;
}

.qualifications-list strong {
  color: var(--jaune);
  font-weight: 600;
}

/* Styles responsives pour les entraîneurs */
@media (max-width: 900px) {
  .entraineur-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .entraineur-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .entraineur-name {
    font-size: 1.6rem;
  }
  
  .entraineur-img {
    width: 100px;
    height: 100px;
  }
  
  .entraineur-no-photo {
    width: 100px;
    height: 100px;
  }
  
  .no-photo-text {
    font-size: 10px;
  }
  
  .entraineur-badges {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .entraineurs-section {
    padding: 2rem 0;
  }
  
  .entraineur-header {
    padding: 1.5rem;
  }
  
  .entraineur-content {
    padding: 1.5rem;
  }
  
  .entraineur-name {
    font-size: 1.4rem;
  }
  
  .entraineur-img {
    width: 80px;
    height: 80px;
  }
  
  .entraineur-no-photo {
    width: 80px;
    height: 80px;
  }
  
  .no-photo-text {
    font-size: 9px;
  }
  
  .badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
  
  .qualifications, .experience {
    padding: 1rem;
  }
  
  .qualifications h4, .experience h4 {
    font-size: 1.1rem;
  }
  
  .qualifications-list li, .experience-list li {
    font-size: 0.9rem;
  }
} 

/* Section Horaires */
.horaires-section {
  padding: 4rem 0;
  background: var(--noir);
}

.horaire-card {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 214, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.horaire-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 214, 0, 0.2);
}

.horaire-header {
  background: linear-gradient(90deg, var(--jaune), #ffed4e);
  padding: 1.5rem 2rem;
}

.horaire-categorie {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--noir);
  margin: 0;
  letter-spacing: 1px;
}

.horaire-content {
  padding: 2rem;
}

.horaire-lieu {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 214, 0, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--jaune);
}

.horaire-lieu:last-child {
  margin-bottom: 0;
}

.horaire-lieu h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--jaune);
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
}

.horaire-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.jour {
  font-weight: 600;
  color: var(--blanc);
  font-size: 1.1rem;
}

.heure {
  color: var(--jaune);
  font-size: 1rem;
  font-weight: 500;
}

/* Section Informations pratiques */
.infos-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.infos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: linear-gradient(145deg, #222, #2a2a2a);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 214, 0, 0.2);
}

.info-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--jaune);
  margin: 0 0 1.5rem 0;
  letter-spacing: 1px;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.info-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 214, 0, 0.1);
  color: var(--blanc);
  font-size: 1rem;
  line-height: 1.6;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card strong {
  color: var(--jaune);
  font-weight: 600;
}

.info-card p {
  color: var(--blanc);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Styles responsives pour les horaires */
@media (max-width: 900px) {
  .horaire-categorie {
    font-size: 1.5rem;
  }
  
  .horaire-content {
    padding: 1.5rem;
  }
  
  .horaire-lieu {
    padding: 1rem;
  }
  
  .horaire-lieu h4 {
    font-size: 1.1rem;
  }
  
  .infos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .horaires-section {
    padding: 2rem 0;
  }
  
  .horaire-header {
    padding: 1rem 1.5rem;
  }
  
  .horaire-categorie {
    font-size: 1.3rem;
  }
  
  .horaire-content {
    padding: 1rem;
  }
  
  .horaire-lieu {
    padding: 0.8rem;
  }
  
  .horaire-lieu h4 {
    font-size: 1rem;
  }
  
  .jour {
    font-size: 1rem;
  }
  
  .heure {
    font-size: 0.9rem;
  }
  
  .infos-section {
    padding: 2rem 0;
  }
  
  .info-card {
    padding: 1rem;
  }
  
  .info-card h3 {
    font-size: 1.3rem;
  }
  
  .info-card li {
    font-size: 0.9rem;
  }
} 

/* Section Tarifs */
.tarifs-section {
  padding: 4rem 0;
  background: var(--noir);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tarif-card {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 214, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tarif-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 214, 0, 0.2);
}

.tarif-header {
  background: linear-gradient(90deg, var(--jaune), #ffed4e);
  padding: 1.5rem;
  text-align: center;
  flex-shrink: 0;
}

.tarif-categorie {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--noir);
  margin: 0;
  letter-spacing: 1px;
}

.tarif-prix {
  padding: 2rem;
  text-align: center;
  background: rgba(255, 214, 0, 0.05);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--jaune);
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tarif-notes {
  background: rgba(255, 214, 0, 0.05);
  border: 1px solid var(--jaune);
  border-radius: 10px;
  padding: 2rem;
  margin-top: 2rem;
}

.tarif-notes p {
  margin: 0.5rem 0;
  color: var(--blanc);
  font-size: 1rem;
  line-height: 1.6;
}

.tarif-notes strong {
  color: var(--jaune);
  font-weight: 600;
}

/* Section Documents */
.documents-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.section-subtitle {
  text-align: center;
  color: var(--blanc);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.document-card {
  background: linear-gradient(145deg, #222, #2a2a2a);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.document-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 214, 0, 0.2);
}

.document-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--jaune);
  margin: 0 0 1.5rem 0;
  letter-spacing: 1px;
}

.document-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.document-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 214, 0, 0.1);
  color: var(--blanc);
  font-size: 0.95rem;
  line-height: 1.5;
}

.document-card li:last-child {
  border-bottom: none;
}

/* Section Matériel */
.materiel-section {
  padding: 4rem 0;
  background: var(--noir);
}

.materiel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.materiel-card {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.materiel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 214, 0, 0.2);
}

.materiel-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--jaune);
  margin: 0 0 1.5rem 0;
  letter-spacing: 1px;
}

.materiel-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.materiel-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 214, 0, 0.1);
  color: var(--blanc);
  font-size: 1rem;
  line-height: 1.6;
}

.materiel-card li:last-child {
  border-bottom: none;
}

/* Section Guide */
.guide-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.guide-card {
  background: linear-gradient(145deg, #222, #2a2a2a);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 214, 0, 0.2);
}

.guide-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--jaune);
  margin: 0 0 1.5rem 0;
  letter-spacing: 1px;
}

.guide-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 214, 0, 0.1);
  color: var(--blanc);
  font-size: 1rem;
  line-height: 1.6;
}

.guide-card li:last-child {
  border-bottom: none;
}

.guide-card strong {
  color: var(--jaune);
  font-weight: 600;
}

/* Section Cours particuliers */
.particuliers-section {
  padding: 4rem 0;
  background: var(--noir);
  text-align: center;
}

.particuliers-content {
  max-width: 800px;
  margin: 0 auto;
}

.particuliers-text {
  color: var(--blanc);
  font-size: 1.3rem;
  margin: 0 0 2rem 0;
  opacity: 0.9;
  line-height: 1.6;
}

.particuliers-vignette {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.vignette-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.vignette-header h3 {
  color: var(--jaune);
  font-size: 1.4rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vignette-content {
  text-align: left;
}

.avantages-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.avantages-list li {
  color: var(--blanc);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding: 0.3rem 0;
  opacity: 0.9;
  line-height: 1.6;
}

.avantages-list li:last-child {
  margin-bottom: 0;
}

.avantages-list li strong {
  color: var(--jaune);
}

.particuliers-cta {
  color: var(--blanc);
  font-size: 1.2rem;
  margin: 2rem 0 0 0;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-link {
  color: var(--jaune);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Styles responsives pour les tarifs */
@media (max-width: 900px) {
  .tarifs-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .tarif-categorie {
    font-size: 1.3rem;
  }
  
  .prix {
    font-size: 2.5rem;
  }
  
  .documents-grid, .materiel-grid, .guide-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .document-card, .materiel-card, .guide-card {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .tarifs-section, .documents-section, .materiel-section, .guide-section, .particuliers-section {
    padding: 2rem 0;
  }
  
  .tarifs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .tarif-header {
    padding: 1rem;
  }
  
  .tarif-categorie {
    font-size: 1.1rem;
  }
  
  .tarif-prix {
    padding: 1.5rem;
  }
  
  .prix {
    font-size: 2rem;
  }
  
  .tarif-notes {
    padding: 1.5rem;
  }
  
  .tarif-notes p {
    font-size: 0.9rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .document-card, .materiel-card, .guide-card {
    padding: 1rem;
  }
  
  .document-card h3, .materiel-card h3, .guide-card h3 {
    font-size: 1.1rem;
  }
  
  .document-card li, .materiel-card li, .guide-card li {
    font-size: 0.9rem;
  }
  
  .particuliers-text {
    font-size: 1.1rem;
  }
  
  .particuliers-vignette {
    padding: 1.5rem;
  }
  
  .vignette-header h3 {
    font-size: 1.2rem;
  }
  
  .avantages-list li {
    font-size: 1rem;
  }
  
  .particuliers-cta {
    font-size: 1.1rem;
  }
} 

/* Section Résultats Sportifs */
.resultats-section {
  padding: 4rem 0;
  background: var(--noir);
}

.resultat-card {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 214, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resultat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 214, 0, 0.2);
}

.resultat-header {
  background: linear-gradient(90deg, var(--jaune), #ffed4e);
  padding: 1.5rem 2rem;
}

.resultat-nom {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--noir);
  margin: 0;
  letter-spacing: 1px;
}

.resultat-content {
  padding: 2rem;
}

.resultat-palmares {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resultat-palmares li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 214, 0, 0.1);
  color: var(--blanc);
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.resultat-palmares li:last-child {
  border-bottom: none;
}

.resultat-palmares li::before {
  content: '🏆';
  position: absolute;
  left: 0;
  top: 0.8rem;
  font-size: 1rem;
}

/* Section Statistiques */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  background: linear-gradient(145deg, #222, #2a2a2a);
  border: 2px solid #404040;
  border-left: 6px solid var(--jaune); /* Bordure jaune plus épaisse et uniforme */
  border-radius: 15px;
  padding: 2.5rem; /* Plus de padding pour un aspect professionnel */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribution uniforme des éléments */
  min-height: 400px; /* Hauteur minimale augmentée pour un aspect professionnel */
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 214, 0, 0.2);
}

.stat-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; /* Titre légèrement plus grand */
  color: var(--jaune);
  margin: 0 0 1.5rem 0; /* Plus d'espace sous le titre */
  letter-spacing: 1px;
  min-height: 60px; /* Hauteur minimale pour uniformiser l'espace */
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; /* Chiffres plus grands et imposants */
  color: var(--jaune);
  font-weight: 900;
  margin: 2rem 0; /* Plus d'espace autour des chiffres */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px; /* Hauteur minimale pour l'alignement professionnel */
}

.stat-card p {
  color: var(--blanc);
  font-size: 1.1rem; /* Description légèrement plus grande */
  margin: 0;
  opacity: 0.9;
  min-height: 50px; /* Hauteur minimale pour uniformiser l'espace */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
}

.stat-icon {
  font-size: 7rem; /* Icônes très imposantes et professionnelles */
  margin-bottom: 3rem; /* Plus d'espace sous les icônes */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 120px; /* Hauteur minimale pour uniformiser l'espace */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Drapeau français tricolore pour Championnat de France */
.stat-icon.french-flag i {
  background: linear-gradient(90deg, 
    #002395 0%, #002395 33.33%, 
    #ffffff 33.33%, #ffffff 66.66%, 
    #ed2939 66.66%, #ed2939 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none; /* Supprimer l'ombre pour l'effet tricolore */
}

/* Styles responsives pour les résultats */
@media (max-width: 900px) {
  .resultat-nom {
    font-size: 1.5rem;
  }
  
  .resultat-content {
    padding: 1.5rem;
  }
  
  .resultat-palmares li {
    font-size: 1rem;
    padding-left: 1.2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .resultats-section, .stats-section {
    padding: 2rem 0;
  }
  
  .resultat-header {
    padding: 1rem 1.5rem;
  }
  
  .resultat-nom {
    font-size: 1.3rem;
  }
  
  .resultat-content {
    padding: 1rem;
  }
  
  .resultat-palmares li {
    font-size: 0.95rem;
    padding-left: 1rem;
  }
  
  .resultat-palmares li::before {
    font-size: 0.9rem;
    top: 0.7rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-card h3 {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-card p {
    font-size: 0.9rem;
  }
} 

/* Section Résultats du Club */
.resultats-club {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.resultats-club .section-subtitle {
  text-align: center;
  color: var(--jaune);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* Grille des combattants */
.combattants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Cartes des combattants */
.combattant-card {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.combattant-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jaune), #ffed4e);
}

.combattant-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 214, 0, 0.25);
}

/* En-tête du combattant */
.combattant-header {
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 2px solid rgba(255, 214, 0, 0.3);
  padding-bottom: 1rem;
}

.combattant-nom {
  color: var(--jaune);
  font-size: 1.4rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

/* Résultats des combattants */
.combattant-card .resultats-liste {
  gap: 0.6rem;
}

.combattant-card .resultat-item {
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.combattant-card .resultat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--jaune);
}

.combattant-card .resultat-item.resultat-champion {
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.1), rgba(255, 214, 0, 0.05));
  border-left-color: var(--jaune);
}

.combattant-card .resultat-item.resultat-champion .medaille {
  color: var(--jaune);
  text-shadow: 0 0 10px rgba(255, 214, 0, 0.5);
}

.combattant-card .medaille {
  font-size: 1.3rem;
  min-width: 1.8rem;
  text-align: center;
}

.combattant-card .resultat-text {
  font-size: 1rem;
  color: var(--blanc);
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive pour les résultats du club */
@media (max-width: 768px) {
  .combattants-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .combattant-card {
    padding: 1.2rem;
  }
  
  .combattant-nom {
    font-size: 1.2rem;
  }
  
  .combattant-card .resultat-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .combattants-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .combattant-card {
    padding: 1rem;
  }
  
  .combattant-nom {
    font-size: 1.1rem;
  }
}

/* Section Palmarès du Club */
.palmares-club {
  margin-top: 4rem;
}

/* Sections par discipline */
.discipline-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discipline-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 214, 0, 0.2);
}

.palmares-club .discipline-title {
  color: var(--jaune);
  font-size: 1.8rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 2px solid var(--jaune);
  padding-bottom: 0.5rem;
}

/* Sections par année */
.annee-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--jaune);
}

.annee-title {
  color: var(--jaune);
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

/* Liste des résultats */
.resultats-liste {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.resultat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.resultat-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.medaille {
  font-size: 1.5rem;
  min-width: 2rem;
  text-align: center;
}

.resultat-text {
  font-size: 1.1rem;
  color: var(--blanc);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .discipline-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .annee-section {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .palmares-club .discipline-title {
    font-size: 1.5rem;
  }
  
  .annee-title {
    font-size: 1.2rem;
  }
  
  .resultat-text {
    font-size: 1rem;
  }
}

/* Section Fiche signalétique */
.fiche-section {
  padding: 4rem 0;
  background: var(--noir);
}

.fiche-section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fiche-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.fiche-section .section-title {
  font-size: 2.8rem;
  color: var(--jaune);
  margin-bottom: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

.fiche-section .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-style: italic;
}

.fiche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.fiche-card {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fiche-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 214, 0, 0.2);
}

/* Styles professionnels pour les nouvelles cartes */
.fiche-card .card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 214, 0, 0.2);
}

.fiche-card .card-header h3 {
  color: var(--jaune);
  font-size: 1.4rem;
  margin: 0.5rem 0 0 0;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: 'Bebas Neue', sans-serif;
}

.fiche-card .card-content {
  text-align: left;
}

.fiche-card .info-item {
  margin-bottom: 1.2rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fiche-card .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.fiche-card .info-item strong {
  color: var(--jaune);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.fiche-card .info-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.fiche-card .info-item a {
  color: var(--jaune);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.fiche-card .info-item a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Anciennes cartes (compatibilité) */
.fiche-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--jaune);
  margin: 0 0 1.5rem 0;
  letter-spacing: 1px;
}

.fiche-content {
  flex: 1;
}

.fiche-content p {
  margin: 0.5rem 0;
  color: var(--blanc);
  font-size: 1rem;
  line-height: 1.6;
}

.fiche-content strong {
  color: var(--jaune);
  font-weight: 600;
}

.fiche-content a {
  color: var(--jaune);
  text-decoration: none;
  transition: color 0.2s;
}

.fiche-content a:hover {
  color: #ffed4e;
}

/* Section Contact */
.contact-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.form-container {
  background: linear-gradient(145deg, #222, #2a2a2a);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--jaune);
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgba(255, 214, 0, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--blanc);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--jaune);
  box-shadow: 0 0 10px rgba(255, 214, 0, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.2rem;
  width: auto;
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.required-fields {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.submit-btn {
  background: var(--jaune);
  color: var(--noir);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 214, 0, 0.3);
}

.contact-info {
  background: linear-gradient(145deg, #222, #2a2a2a);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  padding: 2rem;
  height: fit-content;
}

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--jaune);
  margin: 0 0 2rem 0;
  letter-spacing: 1px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  padding: 1.5rem;
  background: rgba(255, 214, 0, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--jaune);
}

.contact-method h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--jaune);
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
}

.contact-method p {
  margin: 0.3rem 0;
  color: var(--blanc);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-method a {
  color: var(--jaune);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-method a:hover {
  color: #ffed4e;
}

/* Section Plan d'accès */
.map-section {
  padding: 4rem 0;
  background: var(--noir);
}

.map-container {
  margin: 2rem 0;
  box-shadow: 0 8px 32px rgba(255, 214, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.map-info {
  background: rgba(255, 214, 0, 0.05);
  border: 1px solid var(--jaune);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.map-info p {
  margin: 0.5rem 0;
  color: var(--blanc);
  font-size: 1rem;
  line-height: 1.6;
}

.map-info strong {
  color: var(--jaune);
  font-weight: 600;
}

/* Styles responsives pour le contact */
@media (max-width: 900px) {
  .fiche-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-container, .contact-info {
    padding: 1.5rem;
  }
  
  .contact-methods {
    gap: 1.5rem;
  }
  
  .contact-method {
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .fiche-section, .contact-section, .map-section {
    padding: 2rem 0;
  }
  
  .fiche-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .fiche-card {
    padding: 1.5rem;
  }
  
  .fiche-card h3 {
    font-size: 1.2rem;
  }
  
  .form-container, .contact-info {
    padding: 1rem;
  }
  
  .contact-form {
    gap: 1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .contact-info h3 {
    font-size: 1.3rem;
  }
  
  .contact-method h4 {
    font-size: 1.1rem;
  }
  
  .contact-method p {
    font-size: 0.9rem;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .map-info {
    padding: 1rem;
  }
  
  .map-info p {
    font-size: 0.9rem;
  }
} 

/* Section Partenaires */
.partenaires-section {
  padding: 4rem 0;
  background: var(--noir);
}

.partenaires-categorie {
  margin-bottom: 4rem;
}

.categorie-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--jaune);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 1px;
}

.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.partenaire-card {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partenaire-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 214, 0, 0.2);
}

.partenaire-logo {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partenaire-card:hover .logo-img {
  transform: scale(1.05);
}

.partenaire-nom {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--jaune);
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
}

.partenaire-description {
  color: var(--blanc);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

/* Section Remerciements */
.remerciements-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.remerciements-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.remerciements-content p {
  color: var(--blanc);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.remerciements-content ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: inline-block;
  text-align: left;
}

.remerciements-content li {
  color: var(--blanc);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.8rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.remerciements-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--jaune);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Styles responsives pour les partenaires */
@media (max-width: 900px) {
  .categorie-title {
    font-size: 1.6rem;
  }
  
  .partenaires-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .partenaire-card {
    padding: 1.5rem;
  }
  
  .partenaire-logo {
    min-height: 100px;
    padding: 0.8rem;
  }
  
  .logo-img {
    max-height: 60px;
  }
  
  .partenaire-nom {
    font-size: 1.2rem;
  }
  
  .partenaire-description {
    font-size: 0.9rem;
  }
  
  .remerciements-content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .partenaires-section, .remerciements-section {
    padding: 2rem 0;
  }
  
  .partenaires-categorie {
    margin-bottom: 2rem;
  }
  
  .categorie-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .partenaires-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .partenaire-card {
    padding: 1rem;
  }
  
  .partenaire-logo {
    min-height: 80px;
    padding: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .logo-img {
    max-height: 50px;
  }
  
  .partenaire-nom {
    font-size: 1.1rem;
  }
  
  .partenaire-description {
    font-size: 0.85rem;
  }
  
  .remerciements-content p {
    font-size: 0.95rem;
  }
  
  .remerciements-content li {
    font-size: 0.9rem;
    padding-left: 1.2rem;
  }
  
  .remerciements-content li::before {
    font-size: 1rem;
  }
} 

/* Section Album */
.album-intro {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  text-align: center;
}

.intro-text {
  color: var(--blanc);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.gallery-section {
  padding: 4rem 0;
  background: var(--noir);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 214, 0, 0.2);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--blanc);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--jaune);
  margin: 0 0 0.5rem 0;
  letter-spacing: 1px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.4;
}

/* Responsive pour la galerie */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .gallery-overlay {
    padding: 1.5rem 1rem 1rem;
  }
  
  .gallery-overlay h3 {
    font-size: 1.1rem;
  }
  
  .gallery-overlay p {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .album-intro {
    padding: 3rem 0;
  }
  
  .intro-text {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .gallery-section {
    padding: 3rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item {
    aspect-ratio: 3/2;
  }
  
  .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 1rem;
  }
  
  .gallery-overlay h3 {
    font-size: 1rem;
  }
  
  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

/* Section Avis Google */
.google-reviews {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  text-align: center;
}

.reviews-subtitle {
  color: var(--blanc);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
  overflow: hidden;
}

.review-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.4,0,.2,1);
}

.review-slide.active {
  display: block;
  opacity: 1;
}

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

.review-content {
  background: linear-gradient(145deg, #222, #2a2a2a);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 0 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-stars {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffd700;
}

.review-content blockquote {
  font-size: 1.2rem;
  color: var(--blanc);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  position: relative;
}

.review-content blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--jaune);
  position: absolute;
  top: -1rem;
  left: -1rem;
  opacity: 0.3;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.author-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--jaune);
  letter-spacing: 1px;
}

.review-date {
  color: var(--blanc);
  opacity: 0.7;
  font-size: 0.9rem;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active,
.review-dot:hover {
  background: var(--jaune);
  transform: scale(1.2);
}



/* Responsive pour les avis Google */
@media (max-width: 900px) {
  .review-content {
    padding: 2rem;
    margin: 0 0.5rem;
  }
  
  .review-content blockquote {
    font-size: 1.1rem;
  }
  
  .author-name {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .google-reviews {
    padding: 3rem 0;
  }
  
  .reviews-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .review-content {
    padding: 1.5rem;
    margin: 0;
  }
  
  .review-content blockquote {
    font-size: 1rem;
  }
  
  .review-content blockquote::before {
    font-size: 2rem;
    top: -0.5rem;
    left: -0.5rem;
  }
  
  .review-author {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .google-review-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

.google-actions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.leave-review-section {
  background: linear-gradient(145deg, #2a2a2a, #333);
  border: 2px solid var(--jaune);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(255, 214, 0, 0.1);
}

.leave-review-section h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--jaune);
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
}

.leave-review-section p {
  color: var(--blanc);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  opacity: 0.9;
}

.review-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.leave-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.leave-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.livre-dor-btn {
  background: linear-gradient(45deg, #4a90e2, #357abd);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.livre-dor-btn:hover {
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.review-icon {
  font-size: 1.2rem;
}

/* Responsive pour les actions Google */
@media (max-width: 900px) {
  .google-actions {
    gap: 1.5rem;
  }
  
  .leave-review-section {
    padding: 1.5rem;
  }
  
  .leave-review-section h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .google-actions {
    gap: 1rem;
  }
  
  .leave-review-section {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .leave-review-section h3 {
    font-size: 1.1rem;
  }
  
  .leave-review-section p {
    font-size: 0.9rem;
  }
  
  .leave-review-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Styles spécifiques pour le livre d'or */
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.3em;
}
.rating input[type="radio"] {
  display: none;
}
.rating label {
  display: inline-block;
  pointer-events: auto;
  font-size: 2rem;
  color: #bbb;
  cursor: pointer !important;
  transition: color 0.2s;
  user-select: none;
  vertical-align: middle;
}
.rating label:hover,
.rating label:hover ~ label {
  color: #ffd600;
}
.rating input[type="radio"]:checked ~ label {
  color: #ffd600;
}

.temoignages-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0 1.5rem 0;
}
.temoignage-card {
  background: #fff;
  color: #222;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 270px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.temoignage-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}
.temoignage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.7rem;
}
.temoignage-nom {
  font-weight: bold;
  font-size: 1.15rem;
  color: #222;
}
.temoignage-badge {
  background: #3498db;
  color: #fff;
  font-size: 0.85rem;
  border-radius: 12px;
  padding: 0.2em 0.9em;
  margin-left: 0.7em;
  font-weight: 600;
}
.temoignage-stars {
  color: #ffd600;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}
.temoignage-texte {
  font-size: 1.08rem;
  font-style: italic;
  color: #444;
  margin-bottom: 1.2rem;
  min-height: 60px;
}
.temoignage-date {
  color: #888;
  font-size: 0.98rem;
  margin-top: auto;
  align-self: flex-end;
}
.temoignages-btn-wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .temoignages-grid {
    gap: 1.2rem;
  }
  .temoignage-card {
    min-width: 220px;
    max-width: 100%;
    padding: 1.3rem 1rem 1rem 1rem;
  }
}
@media (max-width: 600px) {
  .temoignages-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .temoignage-card {
    width: 100%;
    min-width: 0;
    padding: 1rem 0.7rem 0.7rem 0.7rem;
  }
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.3em;
}
.rating input[type="radio"] {
  display: none;
}
.rating label {
  display: inline-block;
  pointer-events: auto;
  font-size: 2rem;
  color: #bbb;
  cursor: pointer !important;
  transition: color 0.2s;
  user-select: none;
  vertical-align: middle;
}
.rating label:hover,
.rating label:hover ~ label {
  color: #ffd600;
}
.rating input[type="radio"]:checked ~ label {
  color: #ffd600;
}

.star-active {
  color: #ffd600 !important;
  transition: color 0.2s;
}

.footer-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.2rem 0 0.7rem 0;
}
.footer-banner {
  width: 320px;
  max-width: 90vw;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.3rem;
  box-shadow: 0 2px 12px #0006;
  object-fit: cover;
}
.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  padding-bottom: 2px;
}
.footer-link:hover {
  color: #ffd600;
  border-bottom: 2px solid #ffd600;
}
.footer-legal {
  color: #e0e0e0;
  font-size: 0.95rem;
  margin-top: 0rem;
  text-align: center;
}
.footer-siret {
  font-size: 0.95rem;
  color: #ffd600;
  margin-top: 0.1rem;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-banner {
    width: 98vw;
    max-width: 98vw;
  }
}

.footer-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 0 0.5rem 0;
}
.footer-legal-line {
  text-align: center;
  line-height: 1;
}
.footer-legal-line .footer-siret {
  margin: 0;
  padding: 0;
  line-height: 1;
  display: block;
}
.footer-legal-line .footer-legal {
  margin: 0;
  padding: 0;
  line-height: 1;
  display: block;
}
.footer-legal-block .footer-siret {
  margin-bottom: -0.8rem;
}
.footer-legal-block .footer-siret {
  margin-bottom: 0rem;
}
.footer-legal-block .footer-legal {
  margin-top: 0rem;
}
.footer-logo-centered {
  width: 320px;
  max-width: 90vw;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.3rem;
  box-shadow: 0 2px 12px #0006;
  object-fit: cover;
}
.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  padding-bottom: 2px;
}
.footer-link:hover {
  color: #ffd600;
  border-bottom: 2px solid #ffd600;
}
.footer-legal {
  color: #e0e0e0;
  font-size: 0.95rem;
  margin-top: 0rem;
  text-align: center;
}
.footer-siret {
  font-size: 0.95rem;
  color: #ffd600;
  margin-top: 0.1rem;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-logo-centered {
    width: 98vw;
    max-width: 98vw;
  }
}

.nav-boutique {
  margin-left: 2.2rem;
}
.nav-boutique a {
  text-shadow: 0 2px 8px #ffd60055;
}

.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.2rem 2.5rem;
  justify-items: center;
  align-items: stretch;
}
.boutique-item {
  background: #191919;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0002;
  padding: 1.2rem 1.1rem 1.5rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  height: 100%;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.boutique-item:hover {
  box-shadow: 0 8px 32px #ffd60033, 0 2px 16px #0004;
  transform: translateY(-4px) scale(1.02);
}
.boutique-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #232323;
  border-radius: 12px;
  margin-bottom: 1.1rem;
  min-height: 160px;
  box-shadow: 0 2px 12px #0002;
}
.boutique-img {
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
  background: #222;
  object-fit: contain;
}
.boutique-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
  margin-bottom: 1.1rem;
}
.boutique-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffd600;
  margin: 0.1rem 0 0.2rem 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.boutique-price {
  color: #ffd600;
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  text-align: center;
}
.boutique-tailles {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.taille-badge {
  background: #222;
  color: #ffd600;
  border-radius: 8px;
  padding: 0.13em 0.7em;
  font-size: 0.98rem;
  font-weight: 500;
  border: 1px solid #ffd60055;
  margin-bottom: 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.taille-badge.active {
  background: #ffd600;
  color: #181818;
  border: 1.5px solid #ffd600;
  box-shadow: 0 2px 8px #ffd60055;
  font-weight: 700;
  z-index: 1;
}
.boutique-stock {
  font-size: 0.97rem;
  margin-bottom: 0.2rem;
  text-align: center;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.13em 0.9em;
  display: inline-block;
}
.boutique-stock-ok {
  color: #1ecb6b;
  background: #1ecb6b22;
}
.boutique-stock-ko {
  color: #ff4d4d;
  background: #ff4d4d22;
}
.boutique-btn {
  display: block;
  background: #ffd600;
  color: #181818;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.6em 1.3em;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-top: auto;
  box-shadow: 0 1px 6px #0002;
  text-align: center;
  width: 100%;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}
.boutique-btn:hover {
  background: #fff;
  color: #181818;
  box-shadow: 0 2px 12px #ffd60055;
}
.boutique-btn-disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

/* Bouton retour en haut */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ffd600, #ffed4e);
  border: none;
  border-radius: 50%;
  color: #111;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd600);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 214, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #111;
  margin-bottom: 2px;
  transition: all 0.3s ease;
}

.back-to-top:hover::before {
  border-bottom-color: #000;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .back-to-top::before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid #111;
  }
}

/* Styles pour les liens de documents */
.document-link {
  color: var(--jaune);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.2rem 0;
}

.document-link:hover {
  color: var(--blanc);
  text-decoration: underline;
}

.document-link::after {
  content: " 📄";
  font-size: 0.9em;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.document-link:hover::after {
  opacity: 1;
}

@media (max-width: 600px) {
  .document-link {
    display: inline-block;
    padding: 0.3rem 0;
  }
  
  .document-link::after {
    content: " 📄";
    font-size: 0.8em;
  }
}

/* Styles pour le Lightbox */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--jaune);
  text-decoration: none;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
  margin-top: 20px;
  text-align: center;
  color: var(--blanc);
}

.lightbox-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  color: var(--jaune);
}

.lightbox-info p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 214, 0, 0.2);
  color: var(--blanc);
  border: 2px solid var(--jaune);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--jaune);
  color: var(--noir);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Animation d'ouverture du modal */
.lightbox-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive pour le lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    width: 95%;
    padding: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-info h3 {
    font-size: 1.2rem;
  }
  
  .lightbox-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .lightbox-nav {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .lightbox-info h3 {
    font-size: 1.1rem;
  }
  
  .lightbox-info p {
    font-size: 0.8rem;
  }
}

/* ===== STYLES POUR LA SECTION CRÉATION ET HÉBERGEMENT ===== */
.creation-hebergement {
    padding: 4rem 0;
    background: var(--noir);
}

.creation-hebergement h2 {
    text-align: center;
    color: var(--jaune);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    border: 2px solid rgba(255, 214, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, 
        rgba(255, 214, 0, 0.08), 
        rgba(255, 214, 0, 0.03), 
        transparent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 214, 0, 0.1), 
        rgba(255, 214, 0, 0.05), 
        transparent, 
        rgba(255, 214, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.info-card:hover {
    border-color: var(--jaune);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.2);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card > * {
    position: relative;
    z-index: 2;
}

.info-card h3 {
    color: var(--jaune);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-card h3 i {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 214, 0, 0.5));
}

.info-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-content strong {
    color: var(--jaune);
    font-weight: 600;
}

.info-content a {
    color: var(--jaune);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.info-content a:hover {
    color: white;
    text-shadow: 0 0 10px var(--jaune);
    text-decoration: underline;
}

.info-content a[target="_blank"] {
    position: relative;
}

.info-content a[target="_blank"] i {
    margin-left: 0.3rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .creation-hebergement h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
}

/* ===== STYLES POUR LA NOUVELLE PAGE D'ACCUEIL PROFESSIONNELLE ===== */

/* Section Présentation du Club */
.club-presentation {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.club-presentation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 214, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Supprimé - remplacé par mission-vision-clean */

.visual-highlights {
    display: grid;
    gap: 1.5rem;
}

.highlight-card {
    border: 2px solid rgba(255, 214, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 214, 0, 0.1), 
        rgba(255, 214, 0, 0.05), 
        transparent, 
        rgba(255, 214, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-card > * {
    position: relative;
    z-index: 2;
}

.highlight-card:hover {
    border-color: var(--jaune);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.15);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-card h4 {
    color: var(--jaune);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.club-presentation .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.presentation-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.presentation-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.presentation-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* Nouveau style pour mission/vision sans boîtes */
.mission-vision-clean {
    display: grid;
    gap: 3rem;
}

.mission-card,
.vision-card {
    padding: 2rem 0;
    border-left: 4px solid var(--jaune);
    padding-left: 2rem;
    position: relative;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--jaune), rgba(255, 214, 0, 0.3));
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 214, 0, 0.5));
}

.mission-card h3,
.vision-card h3 {
    color: var(--jaune);
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.box-icon {
    font-size: 2rem;
}

.highlights-grid {
    display: grid;
    gap: 1.5rem;
}

.presentation-stats-section {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 214, 0, 0.2);
}

.stats-title {
    color: var(--jaune);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.presentation-text h3 {
    color: var(--jaune);
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.presentation-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.presentation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Nouvelles statistiques améliorées */
.presentation-stats-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card-enhanced {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border: 2px solid rgba(255, 214, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 214, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card-enhanced:hover {
    transform: translateY(-5px);
    border-color: var(--jaune);
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.2);
}

.stat-card-enhanced:hover::before {
    opacity: 1;
}

.stat-icon-bg {
    width: 60px;
    height: 60px;
    background: var(--jaune);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-icon-bg i {
    font-size: 1.8rem;
    color: var(--noir);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-card-enhanced .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--jaune);
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card-enhanced .stat-label {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-description {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 214, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 214, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--jaune);
    font-family: 'Bebas Neue', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.presentation-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.presentation-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.visual-card:hover .presentation-img {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    color: white;
}

.visual-overlay h4 {
    color: var(--jaune);
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

/* Section Nos Atouts */
.nos-atouts {
    padding: 4rem 0;
    background: var(--noir);
}

.nos-atouts .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.atouts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.atout-card {
    border: 2px solid rgba(255, 214, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, 
        rgba(255, 214, 0, 0.08), 
        rgba(255, 214, 0, 0.03), 
        transparent);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.atout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--jaune), transparent, var(--jaune));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.atout-card:hover {
    transform: translateY(-5px);
    border-color: var(--jaune);
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.2);
}

.atout-card:hover::before {
    opacity: 0.1;
}

.atout-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.atout-card h3 {
    color: var(--jaune);
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.atout-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Section Histoire du Club */
.club-history {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}

.club-history .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.history-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.affiliation-highlight {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(255, 214, 0, 0.1);
    border: 2px solid var(--jaune);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.affiliation-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.affiliation-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

.affiliation-text strong {
    color: var(--jaune);
    font-weight: 600;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--jaune);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 100px;
    text-align: center;
    font-weight: bold;
    color: var(--jaune);
    font-size: 1.1rem;
    background: var(--noir);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid var(--jaune);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(145deg, #222, #2d2d2d);
    border: 1px solid rgba(255, 214, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 0 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.timeline-text h4 {
    color: var(--jaune);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.timeline-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.legal-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 214, 0, 0.2);
}

.legal-note p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.legal-link {
    color: var(--jaune);
    text-decoration: none;
    font-weight: 500;
}

.legal-link:hover {
    text-decoration: underline;
}

/* Section Navigation Rapide */
.navigation-rapide {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.navigation-rapide .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-card {
    border: 2px solid rgba(255, 214, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, 
        rgba(255, 214, 0, 0.06), 
        rgba(255, 214, 0, 0.02), 
        transparent);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.nav-card:hover {
    transform: translateY(-3px);
    border-color: var(--jaune);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.15);
}

.nav-card.highlight {
    border-color: var(--jaune);
}

.nav-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.nav-card h3 {
    color: var(--jaune);
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.nav-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.nav-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--jaune);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.nav-card:hover .nav-arrow {
    transform: translateX(5px);
}

/* Section Témoignages Google */
.temoignages-google {
    padding: 4rem 0;
    background: var(--noir);
}

.temoignages-google .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.temoignages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

/* Container pour 6 avis Google - 3 colonnes sur desktop, 2 sur tablette, 1 sur mobile */
.temoignages-container-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

@media (max-width: 1024px) {
    .temoignages-container-six {
        grid-template-columns: repeat(2, 1fr);
    }
}

.temoignage-card {
    border: 2px solid rgba(255, 214, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, 
        rgba(255, 214, 0, 0.05), 
        rgba(255, 214, 0, 0.02), 
        transparent);
    padding: 2rem;
    position: relative;
}

.temoignage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 1.2rem;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.google-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.temoignage-card blockquote {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-size: 1.05rem;
}

.temoignage-card cite {
    display: block;
    text-align: right;
}

.temoignage-card cite strong {
    color: var(--jaune);
    font-style: normal;
}

.temoignage-card cite span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.google-actions {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section CTA Final */
.cta-final {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.1) 0%, rgba(255, 214, 0, 0.05) 100%);
    border-top: 2px solid var(--jaune);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    padding: 2rem;
}

.cta-left {
    padding: 2rem;
}

.cta-right {
    padding: 2rem;
}

.cta-description {
    margin-bottom: 2rem !important;
}

.cta-text h2 {
    color: var(--jaune);
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 214, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--jaune);
}

.benefit-icon {
    color: var(--jaune);
    font-size: 1.2rem;
    font-weight: bold;
}

.benefit-item span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.cta-actions {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 214, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-contact {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 214, 0, 0.2);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    margin: 0.5rem;
    display: inline-block;
    min-width: 200px;
}

.cta-note {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.cta-note a {
    color: var(--jaune);
    text-decoration: none;
    font-weight: bold;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* Responsive pour la nouvelle page d'accueil */
@media (max-width: 900px) {
    .presentation-main,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        flex-direction: row;
        text-align: left;
        margin: 0 0 0 4rem;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        flex: none;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0;
    }
    
    .affiliation-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .presentation-stats,
    .presentation-stats-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card-enhanced {
        padding: 1.5rem;
    }
    
    .stat-card-enhanced .stat-number {
        font-size: 2.5rem;
    }
    
    .navigation-grid {
        grid-template-columns: 1fr;
    }
    
    .temoignages-container,
    .temoignages-container-six {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .google-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .atouts-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .atout-card,
    .nav-card,
    .temoignage-card {
        padding: 1.5rem;
    }
}

/* ===== STYLES POUR LA GALERIE ALBUM ===== */
.gallery-section {
    padding: 4rem 0;
    background: var(--noir);
}

.gallery-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-intro h2 {
    color: var(--jaune);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.gallery-intro p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--noir);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumbnail img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    margin-top: auto;
}

.gallery-content h3 {
    color: var(--blanc);
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.gallery-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.gallery-date {
    color: var(--jaune);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.gallery-zoom {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 214, 0, 0.9);
    color: var(--noir);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
    transform: scale(0);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-zoom:hover {
    background: var(--jaune);
    transform: scale(1.1);
}

.gallery-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.gallery-empty i {
    font-size: 4rem;
    color: rgba(255, 214, 0, 0.3);
    margin-bottom: 1.5rem;
}

.gallery-empty h3 {
    color: var(--blanc);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.gallery-empty p {
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Lightbox pour la galerie */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--noir);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--jaune);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 214, 0, 0.9);
    color: var(--noir);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--jaune);
    transform: scale(1.1);
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    background: rgba(255, 214, 0, 0.9);
    color: var(--noir);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background: var(--jaune);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-info {
    padding: 20px;
    border-top: 1px solid rgba(255, 214, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.lightbox-info h3 {
    color: var(--jaune);
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.lightbox-info p {
    color: var(--blanc);
    margin: 0;
    line-height: 1.5;
}

/* Responsive pour la galerie */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-thumbnail {
        height: 200px;
    }
    
    .gallery-intro h2 {
        font-size: 2rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-thumbnail {
        height: 250px;
    }
    
    .gallery-intro h2 {
        font-size: 1.8rem;
    }
    
    .gallery-intro p {
        font-size: 1rem;
    }
    
    .gallery-overlay {
        padding: 15px;
    }
    
    .gallery-zoom {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .lightbox-info {
        padding: 15px;
    }
    
    .lightbox-info h3 {
        font-size: 1.1rem;
    }
}

/* ========================================
   PAGE 404 PERSONNALISÉE
   ======================================== */
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--noir) 0%, #1a1a1a 100%);
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    color: var(--jaune);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

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

.error-title {
    font-size: 6rem;
    font-weight: bold;
    color: var(--jaune);
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 214, 0, 0.5);
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
}

.error-subtitle {
    font-size: 2rem;
    color: var(--blanc);
    margin: 1rem 0;
    font-weight: 600;
}

.error-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.error-actions .btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.error-actions .btn-primary {
    background: var(--jaune);
    color: var(--noir);
}

.error-actions .btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.3);
}

.error-actions .btn-secondary {
    background: transparent;
    color: var(--blanc);
    border: 2px solid var(--jaune);
}

.error-actions .btn-secondary:hover {
    background: var(--jaune);
    color: var(--noir);
    transform: translateY(-2px);
}

.error-help {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 214, 0, 0.2);
}

.error-help p {
    color: var(--jaune);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quick-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-links a {
    color: var(--blanc);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-links a:hover {
    color: var(--jaune);
    border-color: var(--jaune);
    background: rgba(255, 214, 0, 0.1);
    transform: translateY(-1px);
}

/* Responsive pour la page 404 */
@media (max-width: 768px) {
    .error-title {
        font-size: 4rem;
    }
    
    .error-subtitle {
        font-size: 1.5rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-links a {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .error-title {
        font-size: 3rem;
    }
    
    .error-subtitle {
        font-size: 1.3rem;
    }
    
    .error-icon {
        font-size: 3rem;
    }
    
    .error-content {
        padding: 1rem;
    }
}

/* ===== SECTION SOCIAL FEED ===== */
.social-feed {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--noir) 0%, #1a1a1a 100%);
}

.social-feed .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.social-header {
  text-align: center;
  margin-bottom: 3rem;
}

.social-header h2 {
  font-size: 2.5rem;
  color: var(--jaune);
  margin-bottom: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
}

.social-header p {
  font-size: 1.1rem;
  color: var(--blanc);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.social-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--jaune);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.social-card:hover::before {
  transform: scaleX(1);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 214, 0, 0.3);
}

.social-card.instagram:hover {
  border-color: rgba(228, 64, 95, 0.3);
}

.social-card.facebook:hover {
  border-color: rgba(24, 119, 242, 0.3);
}

.social-card.tiktok:hover {
  border-color: rgba(255, 214, 0, 0.3);
}

.social-card .social-header {
  text-align: left;
  margin-bottom: 1.5rem;
}

.social-card .social-header h3 {
  font-size: 1.5rem;
  color: var(--blanc);
  margin: 0.5rem 0;
  font-family: 'Bebas Neue', sans-serif;
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: var(--blanc);
}

.social-card.instagram .social-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card.facebook .social-icon {
  background: #1877F2;
}

.social-card.tiktok .social-icon {
  background: linear-gradient(45deg, #000000, #25F4EE, #FE2C55);
}

.social-description {
  color: var(--blanc);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.social-content {
  margin: 1.5rem 0;
  min-height: 200px;
}

.social-preview {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.preview-placeholder {
  text-align: center;
  color: var(--blanc);
  opacity: 0.6;
}

.preview-placeholder i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.preview-placeholder span {
  font-size: 0.9rem;
}

/* Styles pour les previews de posts */
.preview-post {
  width: 100%;
}

/* Styles spécifiques TikTok */
.post-pinned {
  margin-bottom: 8px;
}

.pinned-badge {
  background: linear-gradient(45deg, #ff0050, #00f2ea);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
}

.tiktok-link {
  margin-top: 12px;
}

.tiktok-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(45deg, #ff0050, #00f2ea);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tiktok-preview-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 80, 0.3);
  color: white;
}

.tiktok-preview-link i {
  font-size: 1rem;
}



.post-header {
  text-align: right;
  margin-bottom: 0.5rem;
}

.post-time {
  color: var(--blanc);
  opacity: 0.7;
  font-size: 0.8rem;
}

.post-content {
  margin-bottom: 1rem;
}

.preview-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.post-caption,
.post-message,
.post-desc {
  color: var(--blanc);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

.post-stats {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--blanc);
  opacity: 0.8;
  font-size: 0.8rem;
}

.stat i {
  color: var(--jaune);
  font-size: 0.7rem;
}

.social-footer {
  text-align: center;
}

.social-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--jaune);
  color: var(--noir);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.social-cta:hover {
  background: #ffed4a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 214, 0, 0.3);
}

.social-cta i {
  font-size: 0.8rem;
}

.social-cta-main {
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--jaune);
  color: var(--noir);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: #ffed4a;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 214, 0, 0.4);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .social-feed {
    padding: 3rem 0;
  }
  
  .social-header h2 {
    font-size: 2rem;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .social-card {
    padding: 1.5rem;
  }
  
  .social-content {
    min-height: 150px;
  }
  
  .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .social-feed .container {
    padding: 0 0.5rem;
  }
  
  .social-card {
    padding: 1rem;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

