body {
  font-family: "Inter", sans-serif;
}

.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 160px;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.dropdown-menu.block {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #000;
}
.dropdown-menu a:hover {
  background-color: #f3f4f6;
  border-radius: 6px;
}
/* Désactiver l'effet de survol pour le lien Électricité */
.dropdown a {
  position: static;
}
.dropdown a::after {
  display: none;
}
/* Mobile */
#mobile-menu .dropdown-menu {
  position: static;
  width: 100%;
  box-shadow: none;
  margin-top: 0;
}
/* Modal Styles */
#quote-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 50;
  align-items: center;
  justify-content: center;
}
#quote-modal.active {
  display: flex;
}
/* Hover Effects for Cards and Buttons */
.card-hover {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
#about .card-hover:hover {
  border-color: #facc15;
}
#services .card-hover:hover {
  transform: scale(1.03);
  border-color: #facc15;
}
.button-hover {
  transition: transform 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
}
.button-hover:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
/* New Hover Effect for Navigation Links */
.nav-link {
  position: relative;
  display: inline-block;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #facc15; /* yellow-400 */
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
/* Mobile Menu Links */
#mobile-menu .nav-link::after {
  bottom: 0;
}

.bg-beige {
  background-color: #f8f6e9;
}
