body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.ein-banner {
    background-color: #f8f9fa; /* Couleur de fond claire */
    padding: 5px 0; /* Petit espacement vertical */
    font-size: 0.85rem; /* Taille de police légèrement réduite */
    border-bottom: 1px solid #e9ecef; /* Ligne de séparation subtile */
    color: #6c757d; /* Couleur de texte discrète */
  }
  
  .ein-banner .container {
    max-width: 1200px; /* Ou la largeur de votre site */
    margin: 0 auto;
    padding: 0 15px; /* Espacement sur les côtés */
    text-align: right; /* Alignement à droite */
  }
  
  /* Style au survol pour légère interaction */
  .ein-banner span:hover {
    color: #495057;
  }
  
.navbar {
    background-color: #3b2e1e;
    padding: 15px 0;
}
.navbar a {
    color: white;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: 5px 10px;
}
.navbar a:hover {
    color: #c4a484;
}
.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #c4a484;
    transition: width 0.3s ease-in-out;
}
.navbar a:hover::after {
    width: 100%;
}
.banner {
    position: relative;
    background: url('../images/membres.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.content {
    position: relative;
    z-index: 2;
}
.lang-select {
    margin-top: 20px;
}

/* Footer Styles */
footer {
    background-color: #2c2416;
    color: white;
    padding: 60px 0 30px;
}
.footer-logo {
    width: 100px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.footer-logo:hover {
    transform: scale(1.05);
}
.footer-column h5 {
    color: #c4a484;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #c4a484;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: #c4a484;
    transform: translateX(5px);
}
.social-icons {
    margin-top: 20px;
}
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: #c4a484;
    color: #2c2416;
    transform: translateY(-5px);
}
.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: #aaa;
}



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

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid #fff;
}

/* Style spécifique pour le lien donate */
.navbar-dark .navbar-nav .nav-link[href="donate.html"] {
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid #fff;
}

.nav-link.donate {
    background-color: #ffd700 !important;
    color: #000 !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.nav-link.donate:hover {
    background-color: #ffed4a !important;
    transform: translateY(-2px) !important;
}


/* Section principale */
.members-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.members-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #8b4513);
    z-index: 1;
}

/* Section vidéo */
.video-section {
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #8b4513);
    z-index: 2;
}

.video-container video {
    width: 50%;
    height: auto;
    display: block;
    border-radius: 0 0 20px 20px;
    margin: 0px auto;
}

/* Titre principal */
#members-title {
    color: #2c1810;
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    position: relative;
}

#members-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #8b4513);
    border-radius: 2px;
}

/* Cards des membres */
.members-section .card {
    border-radius: 20px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.1);
}

.members-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #8b4513);
    z-index: 1;
}

.members-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15) !important;
    border-color: #ffd700 !important;
}

.members-section .card:hover::before {
    height: 8px;
}

/* Images des membres */
.members-section .card-img-top {
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.members-section .card:hover .card-img-top {
    transform: scale(1.05);
}

/* Corps des cartes */
.members-section .card-body {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

/* Noms des membres */
.members-section .card-title {
    color: #2c1810;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Rôles des membres */
.members-section .card-text {
    color: #8b4513;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Boutons email */
.members-section .btn-outline-primary {
    background: transparent;
    border: 2px solid #8b4513;
    color: #8b4513;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.members-section .btn-outline-primary:hover {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    border-color: #8b4513;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.members-section .btn-outline-primary:active {
    transform: translateY(0);
}

.members-section .btn-outline-primary i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.members-section .btn-outline-primary:hover i {
    color: #ffd700;
}

/* Animations */
.members-section .card {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Effet de brillance subtil */
.members-section .card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 1;
}

.members-section .card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #members-title {
        font-size: 2rem;
    }
    
    .members-section .card-img-top {
        height: 250px;
    }
    
    .members-section .card-body {
        padding: 1.5rem 1rem;
    }
    
    .video-container {
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .members-section .card-img-top {
        height: 200px;
    }
    
    .members-section .card-title {
        font-size: 1.1rem;
    }
    
    .members-section .btn-outline-primary {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/* Effet de survol pour la vidéo */
.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.25);
}

/* Amélioration de l'overlay vidéo */
.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container:hover::after {
    opacity: 1;
}


/* Donation Section Styles */
.donation-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 60px 20px;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: all 0.3s ease;
        }

        .donation-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            transition: all 0.3s ease;
        }

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

        .donation-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: color 0.3s ease;
        }

        .donation-subtitle {
            font-size: 1.4rem;
            margin-bottom: 50px;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .donate-button {
            background: white;
            color: #8B1538;
            border: none;
            padding: 18px 40px;
            font-size: 1.3rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .donate-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            background: #f8f8f8;
        }

        /* Variantes de couleur */
        .theme-red {
            background-image: url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
        }

        .theme-red::before {
            background: linear-gradient(135deg, rgba(139, 21, 56, 0.8), rgba(139, 21, 56, 0.6));
        }

        .theme-red .donation-title,
        .theme-red .donation-subtitle {
            color: white;
        }

        .theme-black {
            background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80');
        }

        .theme-black::before {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
        }

        .theme-black .donation-title,
        .theme-black .donation-subtitle {
            color: white;
        }

        .theme-white {
            background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        .theme-white::before {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
        }

        .theme-white .donation-title,
        .theme-white .donation-subtitle {
            color: #333;
        }

        .theme-white .donate-button {
            background: #8B1538;
            color: white;
        }

        .theme-white .donate-button:hover {
            background: #6d1029;
        }

        .theme-yellow {
            background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        .theme-yellow::before {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.8), rgba(255, 193, 7, 0.6));
        }

        .theme-yellow .donation-title,
        .theme-yellow .donation-subtitle {
            color: #333;
        }

        .theme-yellow .donate-button {
            background: #333;
            color: white;
        }

        .theme-yellow .donate-button:hover {
            background: #555;
        }

        .theme-brown {
            background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
        }

        .theme-brown::before {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(139, 69, 19, 0.6));
        }

        .theme-brown .donation-title,
        .theme-brown .donation-subtitle {
            color: white;
        }

        .theme-gradient {
            background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        .theme-gradient::before {
            background: linear-gradient(135deg, 
                rgba(139, 21, 56, 0.8), 
                rgba(255, 193, 7, 0.6), 
                rgba(139, 69, 19, 0.7));
        }

        .theme-gradient .donation-title,
        .theme-gradient .donation-subtitle {
            color: white;
        }

        /* Contrôles de thème */
        .theme-controls {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .theme-button {
            width: 50px;
            height: 50px;
            border: 3px solid white;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .theme-button:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .theme-button.red { background: #8B1538; }
        .theme-button.black { background: #000; }
        .theme-button.white { background: #fff; }
        .theme-button.yellow { background: #FFC107; }
        .theme-button.brown { background: #8B4513; }
        .theme-button.gradient { 
            background: linear-gradient(135deg, #8B1538, #FFC107, #8B4513); 
        }

        /* Responsive */
        @media (max-width: 768px) {
            .donation-title {
                font-size: 2.5rem;
            }
            
            .donation-subtitle {
                font-size: 1.2rem;
            }
            
            .donate-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
            
            .theme-controls {
                top: 10px;
                right: 10px;
            }
            
            .theme-button {
                width: 40px;
                height: 40px;
            }
        }

        /* Animation d'entrée */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .donation-content > * {
            animation: fadeInUp 0.8s ease forwards;
        }

        .donation-title {
            animation-delay: 0.2s;
        }

        .donation-subtitle {
            animation-delay: 0.4s;
        }

        .donate-button {
            animation-delay: 0.6s;
        }
