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/banière.jpg') no-repeat center center/cover;
    height: 85vh;
    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);
}

#title {
    font-weight: bold;
    font-size: 50px;
}



.org-info {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.org-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}
.content {
    position: relative;
    z-index: 2;
    margin-top: 10px;
}
.lang-select {
    margin-top: 20px;
    margin-bottom: 60px;
}

/* 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;
}




/* Header / footer en top */

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffd700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%238b4513" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-section img {
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.2) !important;
    transition: all 0.3s ease;
    border: 3px solid #ffd700;
}

.about-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3) !important;
}

#about-title {
    color: #2c1810;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#about-title::before {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ffd700;
    margin-right: 15px;
    font-size: 0.9em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #8b4513);
    border-radius: 2px;
}

#about-text {
    color: #2c1810;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #ffd700;
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
}

#about-text::before {
    content: '\f0e7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ffd700;
    position: absolute;
    left: -12px;
    top: 20px;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

#about-text1 {
    color: #2c1810;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 40px;
}

#about-text1::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #8b4513;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2em;
}

#about-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border: none;
    color: #2c1810;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

#about-btn::before {
    content: '\f05a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
}

#about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
}

/* Video Section Styles */
.video-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #8b4513);
    border-radius: 2px;
}

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

#video-title .fa-play-circle {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

#about-video {
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.2) !important;
    border: 3px solid #ffd700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#about-video:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3) !important;
}

/* Gallery Section Styles */
.gallery-section {
    position: relative;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 50%, #2c1810 100%);
    z-index: 0;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
}

.z-index-1 {
    z-index: 1;
}

#gallery-title {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

#gallery-title::before {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ffd700;
    margin-right: 15px;
    font-size: 0.9em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#gallery-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;
}

.carousel-inner {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    border: 3px solid #ffd700;
}

#gallery-img1, #gallery-img2 {
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.carousel-control-prev, .carousel-control-next {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #ffd700;
    border-radius: 50%;
    padding: 15px;
}

#view-gallery-btn {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

#view-gallery-btn::before {
    content: '\f06e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
}

#view-gallery-btn:hover {
    background: #ffd700;
    color: #2c1810;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* 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;
        }

/* Additional Professional Touches */
.about-section, .video-section {
    padding: 80px 0;
}

.gallery-section {
    padding: 80px 0;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

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

.about-section [data-aos], .video-section [data-aos], .donation-section [data-aos] {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom selection colors */
::selection {
    background: #ffd700;
    color: #2c1810;
}

::-moz-selection {
    background: #ffd700;
    color: #2c1810;
}

/* Boutons jaunes personnalisés */
.btn-primary, #discover-activities-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border: none;
    color: #2c1810;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-primary:hover, #discover-activities-btn:hover {
    background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
    color: #2c1810;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-outline-primary, #discover-members-btn {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-outline-primary:hover, #discover-members-btn:hover {
    background: #ffd700;
    color: #2c1810;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}