.inter-<uniquifier > {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
* {
  font-family: "Inter" !important ;
}

.container-fluid,
body {
  background-color: #eee !important;
}

/* Navbar Styling */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: transparent !important;
}

.navbar .nav-link {
  color: white !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #ddd !important;
}

.navbar-brand img {
  height: 40px;
}

.navbar-toggler {
  border-color: white !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile dropdown menu styles */
@media (max-width: 991.98px) {
  /* Only apply these styles on mobile */
  .navbar-collapse {
    background-color: white !important;
  }

  .navbar-collapse .nav-link {
    color: black !important;
  }

  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active {
    color: #555 !important;
  }
}

.header-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  position: relative;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.color-bar-wrapper {
  margin-top: 7%;
}

.gallery-img {
  width: 100%;
  height: 300px; /* Ajustez selon vos besoins */
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-img:hover {
  transform: scale(1.03);

}
.social-icons {
  text-align: center;
  margin-top: 40px;
}

.social-icons img {
  width: 32px;
  margin: 0 10px;
  transition: opacity 0.3s;
}

.social-icons img:hover {
  opacity: 0.7;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Style pour le bouton Retour en haut */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

#back-to-top:hover {
    background: #333;
    transform: scale(1.1);
}

#back-to-top.show {
    display: block;
}