/* Styles personnalisés pour SPN Badminton */

/* Agrandissement de la photo du club */
.about-content {
    display: grid;
    grid-template-columns: 4fr 1fr; /* 80% pour la photo, 20% pour le texte */
    gap: 50px;
    align-items: center;
}



.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 500px; /* Hauteur maximale augmentée */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Assure que l'image couvre tout l'espace */
    display: block;
}

/* Repositionnement du badge d'expérience dans le coin inférieur droit */
.experience-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
    z-index: 2;
}

.experience-badge .years {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
}

/* Loader badminton inspiré du template Monster */

/* Shuttler Hero Section - Nouvelle implémentation basée sur le démo TemplateMonster */
.shuttler-hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
  background-color: #1a1a1a;
}

/* Conteneur du fond animé */
.shuttler-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Fond dégradé animé */
.shuttler-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #4caf50 70%, #8bc34a 100%);
  background-size: 200% 200%;
  opacity: 0.85;
  z-index: 0;
  animation: shuttlerGradientAnimation 15s ease infinite;
}

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

/* Conteneur des particules */
.shuttler-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Bulles flottantes */
.shuttler-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.shuttler-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: shuttlerBubbleFloat 12s ease-in-out infinite alternate;
}

/* Élément décoratif rond */
.shuttler-round-element {
  position: absolute;
  bottom: 5%;
  right: 5%;
  z-index: 1;
  width: 300px;
  height: 300px;
  animation: shuttlerRotate 20s linear infinite;
}

.shuttler-round-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.6;
}

@keyframes shuttlerRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shuttlerBubbleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.07; }
  50% { transform: translateY(-20px) scale(1.08); opacity: 0.12; }
  100% { transform: translateY(0) scale(1); opacity: 0.07; }
}

/* Slider principal */
.shuttler-hero-slider {
  position: relative;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* Slides */
.shuttler-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  display: flex;
  align-items: center;
}

.shuttler-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Contenu des slides */
.shuttler-slide-content {
  width: 100%;
  padding: 0 15px;
  color: #fff;
}

/* Structure en deux colonnes */
.shuttler-slide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Colonne de texte (gauche) */
.shuttler-slide-text {
  width: 50%;
  text-align: left;
  padding-right: 30px;
}

/* Colonne d'image (droite) */
.shuttler-slide-image {
  width: 50%;
  text-align: right;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.shuttler-player-img {
  max-height: 90vh;
  max-width: 100%;
  object-fit: contain;
  animation: fadeInRight 1s both, floatUpDown 4s ease-in-out infinite;
  position: relative;
  z-index: 3;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

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

.shuttler-slide-content h2 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  line-height: 1;
  animation: fadeInUp 1s both;
}

/* Grand texte BADMINTON */
.shuttler-big-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  pointer-events: none;
  text-align: center;
}

.shuttler-big-text h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 240px;
  font-weight: 900;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  margin: 0;
  line-height: 0.8;
  letter-spacing: 10px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Sous-titres des slides */
.shuttler-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s both;
}

/* Styles pour les titres SPN BADMINTON */
.text-highlight {
  color: #e30613;
  font-size: 1.2em;
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
}

.text-normal {
  color: #fff;
  letter-spacing: 2px;
  display: inline-block;
}

/* Flèches de navigation */
.shuttler-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.shuttler-arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.shuttler-arrow-left {
  left: 20px;
}

.shuttler-arrow-right {
  right: 20px;
}

/* Pagination du slider */
.shuttler-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

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

.shuttler-dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

/* Boutons */
.shuttler-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hero-slide-text {
  width: 50%;
  padding-right: 30px;
  color: white;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  animation: fadeInUp 1s both;
}

.hero-slide-text p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  animation: fadeInUp 1s 0.3s both;
}

.hero-buttons {
  animation: fadeInUp 1s 0.6s both;
}

/* Styles pour la section statistique - intégrée avec le fond du Hero Slider */
.stats-section {
  padding: 40px 0;
  position: relative;
  z-index: 5;
  margin-top: auto; /* Pousse la section vers le bas du hero */
  width: 100%;
  background-color: transparent; /* Fond transparent */
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.stat-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #e30613;
  border-radius: 3px;
}

.hero-slide-image {
  width: 50%;
  position: relative;
  text-align: right;
}

.hero-player-img {
  max-height: 80vh;
  opacity: 0.8;
  animation: fadeInRight 1s both;
  position: relative;
  z-index: 1;
}

/* Dots de navigation */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

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

.hero-dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Les styles pour la section statistique sont déjà définis plus haut */

/* Conteneur des particules */
.shuttler-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Bulles flottantes */
.shuttler-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.shuttler-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: shuttlerBubbleFloat 12s ease-in-out infinite alternate;
}

/* Élément décoratif rond */
.shuttler-round-element {
  position: absolute;
  bottom: 5%;
  right: 5%;
  z-index: 1;
  width: 300px;
  height: 300px;
  animation: shuttlerRotate 20s linear infinite;
}

.shuttler-round-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.6;
}

@keyframes shuttlerRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shuttlerBubbleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.07; }
  50% { transform: translateY(-20px) scale(1.08); opacity: 0.12; }
  100% { transform: translateY(0) scale(1); opacity: 0.07; }
}

/* Slider principal */
.shuttler-hero-slider {
  position: relative;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* Slides */
.shuttler-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  display: flex;
  align-items: center;
}

.shuttler-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Contenu des slides */
.shuttler-slide-content {
  width: 100%;
  padding: 0 15px;
  color: #fff;
}

/* Structure en deux colonnes */
.shuttler-slide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Colonne de texte (gauche) */
.shuttler-slide-text {
  width: 50%;
  text-align: left;
  padding-right: 30px;
}

/* Colonne d'image (droite) */
.shuttler-slide-image {
  width: 50%;
  text-align: right;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.shuttler-player-img {
  max-height: 90vh;
  max-width: 100%;
  object-fit: contain;
  animation: fadeInRight 1s both, floatUpDown 4s ease-in-out infinite;
  position: relative;
  z-index: 3;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

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

.shuttler-slide-content h2 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  line-height: 1;
  animation: fadeInUp 1s both;
}

/* Grand texte BADMINTON */
.shuttler-big-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  pointer-events: none;
  text-align: center;
}

.shuttler-big-text h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 240px;
  font-weight: 900;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  margin: 0;
  line-height: 0.8;
  letter-spacing: 10px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Sous-titres des slides */
.shuttler-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s both;
}

/* Styles pour les titres SPN BADMINTON */
.text-highlight {
  color: #e30613;
  font-size: 1.2em;
  font-weight: 900;
  display: block;
  margin-bottom: 5px;
}

.text-normal {
  color: #fff;
  letter-spacing: 2px;
  display: block;
}

@media (max-width: 1200px) {
  .shuttler-big-text h1 {
    font-size: 180px;
  }
  
  .shuttler-subtitle {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .shuttler-big-text h1 {
    font-size: 100px;
  }
  
  .shuttler-subtitle {
    font-size: 32px;
  }
}

/* Responsive pour les titres */
@media (max-width: 1200px) {
  .shuttler-slide-content h2 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .shuttler-slide-content h2 {
    font-size: 48px;
  }
}

.shuttler-slide-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  animation: fadeInUp 1s 0.3s both;
}

.shuttler-buttons {
  animation: fadeInUp 1s 0.6s both;
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn-primary {
  background-color: #e30613;
  color: #fff;
  border: 2px solid #e30613;
}

.btn-primary:hover {
  background-color: #c00510;
  border-color: #c00510;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: #e30613;
}

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

/* Responsive */
@media (max-width: 991px) {
  .shuttler-slide-row {
    flex-direction: column;
  }
  
  .shuttler-slide-text,
  .shuttler-slide-image {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
  
  .shuttler-slide-text {
    margin-bottom: 30px;
  }
  
  .shuttler-player-img {
    max-height: 50vh;
  }
}

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

/* Navigation du slider */
.shuttler-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #e30613;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-newsletter-form button:hover {
  background-color: #333;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.footer-bottom a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Styles pour le menu principal fixe style TemplateMonster */
.main-nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1e2124;
  padding: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}

/* Centrer les menus */
.nav-menu {
  justify-content: center;
  margin: 0 auto;
}

.logo {
  padding: 10px 0;
  display: flex;
  align-items: center;
  margin-right: 0;
}

.logo-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.raquette-icon {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.logo-text-container {
  font-size: 20px;
  font-weight: 700;
  margin-right: 10px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.text-highlight, .text-normal {
  display: inline-block;
  vertical-align: baseline;
  line-height: 1;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.text-highlight {
  color: #e30613;
  margin-right: 3px;
}

.text-normal {
  color: #fff;
}

.menu-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.nav-center {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-right: 0;
  position: absolute;
  right: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu > li {
  position: relative;
  margin: 0;
}

.nav-menu > li > a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  padding: 20px 15px;
  display: block;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-menu > li > a:hover, 
.nav-menu > li > a.active {
  color: #e30613;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Style pour le bouton CONTACT US */
.contact-btn {
  margin-left: 15px;
}

.btn-contact {
  background-color: #e30613 !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-block;
  line-height: 1.5;
}

.btn-contact:hover {
  background-color: #b80510 !important;
  color: #fff !important;
}

/* Style pour les icônes sociales en ligne */
.social-menu-item.horizontal {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.social-menu-item.horizontal a {
  margin: 0 5px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-menu-item.horizontal a:hover {
  color: #e30613;
}

.nav-right .contact-btn {
  margin-right: 15px;
}

/* Style pour le menu déroulant */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}

.dropdown-toggle i {
  margin-left: 5px;
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  border-radius: 0 0 4px 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  color: #333;
  padding: 8px 20px 8px 40px;
  display: block;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 20px;
}

.dropdown-menu a:hover {
  background-color: #f5f5f5;
  color: #e30613;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .menu-container {
    position: relative;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 5px;
    display: none;
    min-width: 200px;
    z-index: 1000;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 10px 0;
  }
  
  .social-menu-item {
    border-left: none;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
    padding-left: 0;
    margin-left: 0;
    justify-content: center;
  }
}

.loader-img {
  width: 60px !important;
  height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: opacity 0.7s cubic-bezier(.6,1.3,.5,1);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Styles responsives pour le hero slider */
@media (max-width: 1200px) {
  .shuttler-big-text h1 {
    font-size: 180px;
  }
  
  .shuttler-slide-content h2 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .shuttler-slide-row {
    flex-direction: column;
  }
  
  .shuttler-slide-text,
  .shuttler-slide-image {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
  
  .shuttler-slide-text {
    margin-bottom: 30px;
  }
  
  .shuttler-buttons {
    justify-content: center;
  }
  
  .shuttler-player-img {
    max-height: 50vh;
  }
  
  .shuttler-big-text h1 {
    font-size: 140px;
  }
}

@media (max-width: 767px) {
  .shuttler-big-text h1 {
    font-size: 100px;
  }
  
  .shuttler-slide-content h2 {
    font-size: 42px;
  }
  
  .shuttler-hero-section {
    min-height: 600px;
  }
  
  .shuttler-round-element {
    width: 200px;
    height: 200px;
  }
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
  color: #e30613;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.hero-arrow-left { left: 16px; }
.hero-arrow-right { right: 16px; }
.hero-arrow:hover { background: #fff; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e30613;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.hero-dot.active {
  background: #e30613;
  border-color: #e30613;
}

#loader-wrapper {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s;
}
#loader-wrapper.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
.shuttler-loader svg {
  width: 120px;
  height: 120px;
  display: block;
}
.shuttler-loader .shuttle {
  animation: shuttleDrop 1.3s cubic-bezier(.6,1.3,.5,1) 0.2s;
  animation-fill-mode: both;
}
@keyframes shuttleDrop {
  0% { transform: translateY(-50px); opacity: 0; }
  60% { transform: translateY(10px); opacity: 1; }
  80% { transform: translateY(-5px);}
  100% { transform: translateY(0); opacity: 1;}
}


/* Styles pour le loader badminton */
#loader-wrapper svg {
  width: 120px;
  height: 120px;
  animation: loaderFadeIn 0.8s;
}
@keyframes loaderFadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
#loader-wrapper.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}

/* Animation du volant */
#badminton-loader #shuttle {
  animation: shuttleDrop 1.3s cubic-bezier(.6,1.3,.5,1) 0.2s;
  animation-fill-mode: both;
}
@keyframes shuttleDrop {
  0% { transform: translateY(-50px); opacity: 0; }
  60% { transform: translateY(10px); opacity: 1; }
  80% { transform: translateY(-5px); }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        max-height: 400px;
    }
}

/* Styles pour le footer */
footer {
  background-color: #e30613;
  color: #000;
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #000;
  font-weight: 700;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #000;
}

.footer-column p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #000;
}

.footer-social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-3px);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 15px;
  font-weight: 500;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #000;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  margin-bottom: 15px;
  color: #000;
}

.footer-contact-info i {
  color: #000;
  margin-right: 10px;
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.footer-bottom a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: #fff;
}
