
/* Load Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Vollkorn:wght@500;700&display=swap');

/* General navigation bar styling */
.navbar-luxury {
  background-color: #F7F5F1;
  font-family: 'Vollkorn', serif;
  display: flex;
  justify-content: space-between;
  padding: 30px 60px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 1000;
}

.navbar-luxury .logo {
  font-size: 28px;
  color: #9D5248;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.navbar-luxury .nav-links {
  display: flex;
  gap: 40px;
}

.navbar-luxury .nav-link {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #9D5248;
  text-decoration: none;
  letter-spacing: 1.5px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.navbar-luxury .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #9D5248;
  transition: width 0.3s ease-in-out;
}

.navbar-luxury .nav-link:hover::after {
  width: 100%;
}

.navbar-luxury .nav-link:hover {
  color: #5a2b25;
}

/* Mobile full screen nav */
.nav-special.fullscreen-nav .nav > li > a {
  font-size: 20px !important;
  font-family: 'Vollkorn', serif !important;
  color: #9D5248 !important;
  background-color: #F7F5F1 !important;
  padding: 16px 24px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-bottom: 1px solid #e5ded8;
  transition: all 0.3s ease;
}

.nav-special.fullscreen-nav .nav > li > a:hover {
  color: #5a2b25 !important;
  background-color: #f3eee9 !important;
}


/* Search bar styling */
.navbar-luxury .nav-search {
  display: flex;
  margin-left: auto;
  padding-left: 20px;
}

.navbar-luxury .nav-search input[type="text"] {
  padding: 8px 14px;
  border: 1px solid #9D5248;
  border-radius: 30px 0 0 30px;
  font-size: 14px;
  font-family: 'Helvetica Neue', sans-serif;
  color: #9D5248;
  background-color: transparent;
  outline: none;
  width: 180px;
  transition: all 0.3s ease;
}

.navbar-luxury .nav-search button {
  padding: 8px 12px;
  border: 1px solid #9D5248;
  border-left: none;
  border-radius: 0 30px 30px 0;
  background-color: #9D5248;
  color: #fff;
  cursor: pointer;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.navbar-luxury .nav-search button:hover {
  background-color: #5a2b25;
}

/* Culoare specială pentru Book an Appointment pusă pe LI */
.nav-special.fullscreen-nav .nav > li.book-appointment-link > a {
  background-color: #9D5248 !important;
  color: #ffffff !important;
}

/* Hover pe Book an Appointment */
.nav-special.fullscreen-nav .nav > li.book-appointment-link > a:hover {
  background-color: #5a2b25 !important;
  color: #ffffff !important;
}

.nav-special.fullscreen-nav .nav > li.book-appointment-link > a {
  background-color: #9D5248 !important;
  color: #ffffff !important;
  border-radius: 0px;
  margin-top: 0px; /* 🔥 AICI crești spațiul față de restul */
  padding: 12px 24px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}




<nav class="nav-special fullscreen-nav">
   <ul class="nav"> 
      <!-- link-uri meniu aici -->
   </ul>

   <!-- Logo-ul jos -->
   <div class="fullscreen-logo">
     <img src="img/Logo.jpg" alt="Noir Couture Logo">
   </div>
</nav>

.fullscreen-logo {
  margin-top: auto;
  padding-bottom: 30px;
  text-align: center;
}

.fullscreen-logo img {
  max-width: 140px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.fullscreen-logo img:hover {
  opacity: 1;
}