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


.masonry-gallery {
    column-count: 3;
    column-gap: 1rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .masonry-gallery img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    break-inside: avoid;
  }
  
  .masonry-gallery img:hover {
    transform: scale(1.03);
  }
  
  /* Responsive pour tablette */
  @media (max-width: 992px) {
    .masonry-gallery {
      column-count: 2;
    }
  }
  
  /* Responsive pour mobile */
  @media (max-width: 576px) {
    .masonry-gallery {
      column-count: 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.active {
    color: #ffd700 !important;
    font-weight: bold;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffd700;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.nav-link.active:hover::after {
    transform: scaleX(1.2);
}

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