map {
     height: 400px;
     width: 100%;
}
.whatsapp-btn {
     transition: all 0.3s ease;
}
.whatsapp-btn:hover {
     transform: scale(1.05);
}
.floating-btn {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 100;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.map-controls {
     position: absolute;
     top: 10px;
     right: 10px;
     z-index: 1000;
     background: white;
     padding: 5px;
     border-radius: 4px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.map-controls button {
     display: block;
     width: 100%;
     margin: 2px 0;
     padding: 5px 10px;
     background: #f8f9fa;
     border: 1px solid #ddd;
     border-radius: 3px;
     cursor: pointer;
     font-size: 14px;
}
.map-controls button.active {
     background: #4caf50;
     color: white;
}
.map-controls button:hover {
     background: #e9ecef;
}
.map-controls button.active:hover {
     background: #45a049;
}
.loading {
     display: inline-block;
     width: 20px;
     height: 20px;
     border: 3px solid rgba(255, 255, 255, 0.3);
     border-radius: 50%;
     border-top-color: #fff;
     animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
     to {
          transform: rotate(360deg);
     }
}
.location-info {
     background: white;
     padding: 15px;
     border-radius: 8px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     margin-top: 15px;
}
.phone-link {
     color: #4caf50;
     text-decoration: none;
     font-weight: 500;
}
.phone-link:hover {
     text-decoration: underline;
}
.direction-btn {
     display: inline-flex;
     align-items: center;
     background: #4caf50;
     color: white;
     padding: 8px 15px;
     border-radius: 5px;
     text-decoration: none;
     margin-top: 10px;
     transition: background 0.3s;
}
.direction-btn:hover {
     background: #45a049;
}

/* Styles pour la section Hero avec image de fond */
.hero-section {
     background: linear-gradient(orange, rgba(69, 160, 73, 0.8)), url("images/u.jpg");
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     min-height: 80vh;
     display: flex;
     align-items: center;
     position: relative;
}

/* Styles pour la section partenaires */
.partners-section {
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
     padding: 4rem 0;
     overflow: hidden;
}
.partners-container {
     position: relative;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
}
.partners-title {
     text-align: center;
     font-size: 2.5rem;
     font-weight: bold;
     color: #2d3748;
     margin-bottom: 3rem;
}
.partners-scroll-container {
     overflow: hidden;
     position: relative;
     padding: 20px 0;
}
.partners-track {
     display: flex;
     animation: scroll 30s linear infinite;
     gap: 3rem;
}
.partner-logo {
     flex: 0 0 auto;
     width: 180px;
     height: 100px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: white;
     border-radius: 10px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     padding: 15px;
     transition: transform 0.3s ease;
}
.partner-logo:hover {
     transform: translateY(-5px);
}
.partner-logo img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
}
@keyframes scroll {
     0% {
          transform: translateX(0);
     }
     100% {
          transform: translateX(calc(-180px * 6 - 3rem * 6));
     }
}
.partners-scroll-container:hover .partners-track {
     animation-play-state: paused;
}

/* Styles spécifiques pour mobile */
@media (max-width: 768px) {
     #map {
          height: 300px; /* Hauteur réduite sur mobile */
     }
     .map-controls button {
          padding: 8px 12px;
          font-size: 12px;
     }
     .hero-section {
          background-attachment: scroll;
          min-height: 70vh;
     }
     .hero-title {
          font-size: 2.5rem !important;
     }
     .section-padding {
          padding-top: 3rem !important;
          padding-bottom: 3rem !important;
     }
     .social-links {
          justify-content: center !important;
          margin-top: 1rem;
     }
     .partners-title {
          font-size: 2rem;
     }
     .partner-logo {
          width: 140px;
          height: 80px;
     }
     @keyframes scroll {
          0% {
               transform: translateX(0);
          }
          100% {
               transform: translateX(calc(-140px * 6 - 3rem * 6));
          }
     }
}

@media (max-width: 640px) {
     .hero-title {
          font-size: 2rem !important;
     }
     .hero-subtitle {
          font-size: 1.2rem !important;
     }
     .partner-logo {
          width: 120px;
          height: 70px;
     }
}

/* Correction pour l'affichage de la carte */
.leaflet-container {
     height: 100%;
     width: 100%;
     border-radius: 8px;
}

/* Styles pour les réseaux sociaux */
.social-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
}
.social-icon:hover {
     transform: translateY(-3px);
}
.facebook {
     background: #3b5998;
}
.twitter {
     background: #1da1f2;
}
.instagram {
     background: #e4405f;
}
.youtube {
     background: #cd201f;
}
.linkedin {
     background: #0077b5;
}

.protected {
     display: none;
}

/* Services */
.services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
}

.service-card {
     background-color: white;
     border-radius: 8px;
     padding: 2rem;
     box-shadow: var(--shadow);
     transition: var(--transition);
     text-align: center;
}

.service-card:hover {
     transform: translateY(-10px);
}

.service-icon {
     font-size: 3rem;
     color: var(--secondary-color);
     margin-bottom: 1rem;
}

.service-card h3 {
     margin-bottom: 1rem;
     color: var(--primary-color);
}

/* Styles pour la section Activités */
.gallery-item {
     position: relative;
     overflow: hidden;
     border-radius: 8px;
}

.gallery-item img {
     transition: transform 0.3s ease;
}

.gallery-item:hover img {
     transform: scale(1.1);
}

/* Styles pour les vidéos dans les activités */
video {
     border-radius: 8px;
}

/* Effets de hover pour les cartes d'activités */
.group:hover .group-hover\:scale-105 {
     transform: scale(1.05);
}

/* Responsive pour les médias */
@media (max-width: 768px) {
     .gallery-item img {
          height: 120px;
     }

     .gallery-grid {
          grid-template-columns: repeat(2, 1fr);
     }
}

/* Styles pour la lightbox */
.lightbox-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.9);
     z-index: 1000;
     display: flex;
     justify-content: center;
     align-items: center;
}

.lightbox-modal.hidden {
     display: none;
}

.lightbox-content {
     position: relative;
     max-width: 90%;
     max-height: 90%;
     display: flex;
     flex-direction: column;
     align-items: center;
}

.lightbox-media {
     max-width: 100%;
     max-height: 80vh;
     object-fit: contain;
     border-radius: 8px;
}

.lightbox-media.hidden {
     display: none;
}

.lightbox-close {
     position: absolute;
     top: -40px;
     right: 0;
     color: white;
     font-size: 30px;
     font-weight: bold;
     cursor: pointer;
     background: none;
     border: none;
     padding: 5px 10px;
}

.lightbox-close:hover {
     color: #ccc;
}

.lightbox-caption {
     color: white;
     text-align: center;
     margin-top: 15px;
     font-size: 16px;
     max-width: 600px;
}

/* Styles pour les médias dans les activités */
.media-item {
     transition: transform 0.3s ease;
}

.media-item:hover {
     transform: scale(1.02);
}

/* Respect des dimensions originales */
.object-contain {
     object-fit: contain;
}

/* Responsive design */
@media (max-width: 768px) {
     .lightbox-content {
          max-width: 95%;
          max-height: 85%;
     }

     .lightbox-close {
          top: -35px;
          right: -10px;
          font-size: 25px;
     }

     .lightbox-caption {
          font-size: 14px;
          margin-top: 10px;
     }
}

/* Animation pour l'ouverture de la lightbox */
@keyframes lightboxFadeIn {
     from {
          opacity: 0;
          transform: scale(0.8);
     }
     to {
          opacity: 1;
          transform: scale(1);
     }
}

.lightbox-content {
     animation: lightboxFadeIn 0.3s ease-out;
}

/* Variables CSS */
:root {
     --primary-color: #f08238;
     --secondary-color: #3498db;
     --accent-color: #e74c3c;
     --light-color: #136c82;
     --dark-color: #34608d;
     --text-color: #333;
     --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     --transition: all 0.3s ease;
}

.tab-btn {
     background: none;
     border: none;
     padding: 1rem 2rem;
     font-size: 1.1rem;
     cursor: pointer;
     transition: var(--transition);
     border-bottom: 3px solid transparent;
     color: var(--text-color);
}

.tab-btn.active {
     color: var(--secondary-color);
     border-bottom: 3px solid var(--secondary-color);
     font-weight: bold;
}

.tab-btn:hover {
     color: var(--secondary-color);
}

.gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 1.5rem;
}

.gallery-item {
     position: relative;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
     cursor: pointer;
     aspect-ratio: 4/3;
}

.gallery-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img,
.gallery-item video {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
}

.gallery-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
     color: white;
     padding: 1.5rem 1rem 1rem;
     transform: translateY(100%);
     transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
     transform: translateY(0);
}

.gallery-overlay h4 {
     margin-bottom: 0.5rem;
     font-size: 1.1rem;
}

.gallery-overlay p {
     font-size: 0.9rem;
     opacity: 0.9;
}

.activity-badge {
     position: absolute;
     top: 10px;
     right: 10px;
     background-color: var(--accent-color);
     color: white;
     padding: 0.3rem 0.8rem;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: bold;
}

.coming-soon-badge {
     background-color: var(--secondary-color);
}
/* Écran de permission audio */
#audio-permission {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1a707, #edebe6, #4CAF50);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: rgb(52, 48, 48);
    text-align: center;
    padding: 20px;
}

.permission-content {
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.permission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.permission-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.permission-btn {
    background: linear-gradient(45deg, #FFD700, #FFA000);
    color: #333;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.permission-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #FFA000, #FFD700);
}

/* Vidéo de présentation */
#video-presentation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1a707, #edebe6, #4CAF50);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    padding: 20px;
}

.video-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#intro-video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    border-radius: 15px 15px 0 0;
}


.video-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Animation pour le marquee */
marquee {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 10px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .permission-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .permission-content h2 {
        font-size: 2rem;
    }
    
    .permission-content p {
        font-size: 1rem;
    }
    
    .permission-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
   
    
    .video-btn {
        width: 100%;
        justify-content: center;
    }
    
    marquee {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .permission-content h2 {
        font-size: 1.6rem;
    }
    
    .permission-content {
        padding: 20px 15px;
    }
    
    .video-container {
        width: 95%;
    }
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.permission-content {
    animation: fadeInUp 0.8s ease-out;
}



/* Styles pour la vidéo de présentation */
#video-presentation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1a707, #edebe6, #4CAF50);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    padding: 20px;
}

.video-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-controls {
     position: absolute;
     bottom: 50px;
     left: 0;
     right: 0;
     display: flex;
     justify-content: center;
     gap: 10px;
     padding: 0 20px;
}

.video-btn {
     background-color: rgba(0, 0, 0, 0.5);
     color: white;
     border: none;
     padding: 8px 15px;
     border-radius: 4px;
     cursor: pointer;
     font-size: 14px;
     transition: var(--transition);
}

.video-btn:hover {
     background-color: rgba(0, 0, 0, 0.7);
}

/* Image superposée en haut à droite */
.video-overlay-image {
    position: absolute;
    top: 2px;
    right: 0px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #4CAF50;
    animation: float 3s ease-in-out infinite;
}

.overlay-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

/* Animation de flottement */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

#intro-video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    border-radius: 15px 15px 0 0;
}






/* Responsive */
@media (max-width: 768px) {
    .video-overlay-image {
        top: 15px;
        right: 15px;
        padding: 6px;
    }
    
    .overlay-logo {
        width: 60px;
        height: 60px;
    }
    

    
    .video-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-overlay-image {
        top: 10px;
        right: 10px;
        padding: 4px;
    }
    
    .overlay-logo {
        width: 50px;
        height: 50px;
    }
    
    .video-container {
        width: 95%;
    }
}

/* Effet de brillance sur l'image */
.video-overlay-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4CAF50, #45a049, #4CAF50);
    border-radius: 14px;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}







/* Section Fondateur Simplifiée */
#fondateur {
    background: linear-gradient(135deg, #f0f9f0 0%, #e6f3e6 100%);
    position: relative;
    overflow: hidden;
}

/* Image du fondateur */
#fondateur img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.1);
}

#fondateur img:hover {
    transform: scale(1.05);
    filter: grayscale(0);
    border-color: #38a169;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Badge animé */
#fondateur .absolute {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}


/* Nom du fondateur */
#fondateur h3 {
    position: relative;
    display: inline-block;
}

#fondateur .container {
    position: relative;
    z-index: 1;
}

#fondateur::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(72, 187, 120, 0.1) 0%, transparent 70%);
    z-index: 1;
}
#fondateur h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #48bb78, #38a169);
    border-radius: 1px;
}
#fondateur h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #48bb78, #38a169);
    border-radius: 2px;
}
/* Image du fondateur */
#fondateur img {
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

#fondateur img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Badge de certification */
#fondateur .relative .absolute {
    background: linear-gradient(135deg, #48bb78, #38a169);
    border: 3px solid white;
    animation: pulse 2s infinite;
}

/* Contenu texte */
#fondateur h3 {
    color: #2d3748;
    position: relative;
    padding-bottom: 10px;
}

#fondateur h3::after {
    content: '';
    position: relative;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #48bb78;
}

#fondateur p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}



@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #fondateur {
        padding: 4rem 1rem;
    }
    
    #fondateur img {
        width: 200px;
        height: 200px;
    }
    
    #fondateur h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    #fondateur img {
        width: 160px;
        height: 160px;
    }
    

}


/* Responsive Design */
@media (max-width: 768px) {
    #fondateur {
        padding: 3rem 1rem;
    }
    
    #fondateur .flex.flex-col.md\:flex-row {
        flex-direction: column;
    }
    
    #fondateur .md\:pl-12 {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    #fondateur img {
        max-width: 270px;
    }
    
    #fondateur p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    #fondateur h2 {
        font-size: 2rem;
    }
    
    #fondateur h3 {
        font-size: 1.5rem;
    }
    
    #fondateur img {
        max-width: 250px;
    }
}

/* Animation d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#fondateur [data-aos="fade-right"] {
    animation: fadeInUp 0.8s ease-out;
}

#fondateur [data-aos="fade-left"] {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Effet de brillance sur l'image */
#fondateur .relative::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(72, 187, 120, 0.1), transparent);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#fondateur .relative:hover::before {
    opacity: 1;
}







/* Section Équipe */
#equipe {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcf8 100%);
}

.team-scroll-container {
    mask: linear-gradient(
        90deg,
        transparent,
        white 10%,
        white 90%,
        transparent
    );
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 10%,
        white 90%,
        transparent
    );
}

.team-scroll-track {
    animation: scroll-team 40s linear infinite;
    padding: 0 2rem;
}

.team-scroll-track:hover {
    animation-play-state: paused;
}

.team-member {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #48bb78, #38a169);
    transition: left 0.3s ease;
}

.team-member:hover::before {
    left: 0;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: #48bb78;
}

.member-image-container {
    position: relative;
}

.member-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
    pointer-events: none;
}

/* Animation de défilement */
@keyframes scroll-team {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 5 - 2rem * 4));
    }
}

/* Indicateurs actifs */
.scroll-indicator.active {
    background: #48bb78;
    transform: scale(1.2);
}

/* Effets au survol des indicateurs */
.scroll-indicator:hover {
    background: #48bb78;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-scroll-track {
        animation: scroll-team-mobile 35s linear infinite;
    }
    
    .team-member {
        width: 280px;
    }
    
    @keyframes scroll-team {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 2rem * 4));
        }
    }
}

@media (max-width: 480px) {
    .team-scroll-track {
        animation: scroll-team-small 30s linear infinite;
    }
    
    .team-member {
        width: 260px;
    }
    
    #equipe h2 {
        font-size: 2rem;
    }
    
    .team-scroll-container {
        mask: linear-gradient(
            90deg,
            transparent,
            white 5%,
            white 95%,
            transparent
        );
        -webkit-mask: linear-gradient(
            90deg,
            transparent,
            white 5%,
            white 95%,
            transparent
        );
    }
}

/* Animation d'entrée pour les membres */
@keyframes fadeInMember {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.team-member {
    animation: fadeInMember 0.6s ease-out;
}

.team-member:nth-child(2) { animation-delay: 0.1s; }
.team-member:nth-child(3) { animation-delay: 0.2s; }
.team-member:nth-child(4) { animation-delay: 0.3s; }
.team-member:nth-child(5) { animation-delay: 0.4s; }

/* Effet de brillance au survol */
.team-member:hover .member-image-container img {
    filter: brightness(1.05);
}

/* Style pour les postes */
.text-green-600 {
    position: relative;
    display: inline-block;
}

.text-green-600::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #48bb78;
    transition: width 0.3s ease;
}

.team-member:hover .text-green-600::after {
    width: 100%;
}




/* Contenu principal (caché initialement) */
#main-content {
     display: none;
}


