@import url('https://fonts.googleapis.com/css2?family=Lora&family=Playfair+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@400;500;600;700&display=swap');



.custom-dropdown {
  border: 1px solid #945814;
  border-radius: 8px;
  padding: 0.5rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-in-out;
}

.custom-dropdown .dropdown-item {
  font-weight: 600;
  padding: 0.75rem 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #945814;
  color: #fff;
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    background-color:  rgb(28, 12, 0); /* voile sombre transparent */
    backdrop-filter: blur(2px); /* effet de flou */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: #A0522D; /* terre cuite */
}

.nav-item .nav-link {
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
    font-weight: bold;
    font-size: 1.1rem;
    color: whitesmoke; /* brun profond */
    font-family: 'Bodoni moda';
}

.nav-item .nav-link:hover {
    border-bottom: 2px solid rgba(148, 102, 33, 0.2); /* ocre doré */
    color: rgba(217, 153, 57);
}

.nav-item .nav-link.active {
    color: #B16A18;
    border-bottom: 2px solid #B16A18;
    font-weight: bolder;
}

.logo-img {
  height: 100px; /* ou 50px selon ton design */
  object-fit: contain;
}

.navbar-toggler-icon{
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
  border: 2px solid white;
}

@media (min-width: 992px) {
  .navbar-brand {
    position: static;
    transform: none;
    margin-right: auto; /* colle à gauche */
  }

  .navbar .mobile-login {
    display: none; /* on cache le bouton mobile */
  }
}