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/donate.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;
    color: #000 !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

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


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

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

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

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

/* Description */
#donation-description {
    color: #5a4037;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Cards de donation */
.donation-option {
    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);
    height: 100%;
}

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

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

.donation-option:hover::before {
    height: 8px;
}

/* Icônes */
.donation-option .fas {
    color: #8b4513 !important;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(139, 69, 19, 0.2));
}

.donation-option:hover .fas {
    color: #ffd700 !important;
    transform: scale(1.1);
}

/* Titres des options */
.donation-option h5 {
    color: #2c1810;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.donation-option p {
    color: #5a4037;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Boutons */
.donation-option .btn {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.donation-option .btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #2c1810 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.donation-option .btn:active {
    transform: translateY(0);
}

/* Informations bancaires */
.bank-info {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.bank-info p {
    margin-bottom: 0.5rem;
    color: #2c1810;
    font-size: 0.9rem;
}

.bank-info strong {
    color: #8b4513;
    font-weight: 600;
}

/* Animations supplémentaires */
.donation-option {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 768px) {
    #donation-title {
        font-size: 2rem;
    }
    
    .donation-option {
        margin-bottom: 2rem;
    }
    
    .donation-option .fas {
        font-size: 3rem !important;
    }
}

/* Effet de brillance subtil */
.donation-option::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;
}

.donation-option: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);
    }
}

