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: 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;
}

.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;
}


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

/* Harmonisation de la section news avec les thèmes de l'accueil */
.news-section {
  background: linear-gradient(135deg, #fff8f0 0%, #fbeee6 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(139, 21, 56, 0.08), 0 1.5px 8px rgba(139, 69, 19, 0.08);
  padding: 48px 0 32px 0;
  margin-bottom: 48px;
  position: relative;
}
.news-block .card {
  border-radius: 24px;
  border: 2px solid #ffd700;
  box-shadow: 0 4px 24px rgba(139, 21, 56, 0.10);
  transition: transform 0.2s, box-shadow 0.2s;
  background: rgba(255,255,255,0.98);
}
.news-block .card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 8px 32px rgba(139, 21, 56, 0.18);
}
.news-block .card-title {
  color: #8B1538;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.news-block .card-text, .news-block ul, .news-block blockquote, .news-block .fst-italic {
  color: #3b2e1e;
  font-size: 1.08rem;
}
.news-block ul {
  margin-left: 1.2em;
  margin-bottom: 1.2em;
}
.news-block li {
  margin-bottom: 0.5em;
}
.news-block blockquote {
  border-left: 4px solid #8B1538;
  padding-left: 1em;
  margin: 0.8em 0;
  background: #fbeee6;
  border-radius: 8px;
}
.news-block .fw-bold {
  color: #8B1538;
}
@media (max-width: 768px) {
  .news-section {
    padding: 24px 0 16px 0;
    border-radius: 16px;
  }
  .news-block .card {
    border-radius: 12px;
  }
}