/* ===========================
   Navbar Styles - Professional Light Theme
   =========================== */

.navbar {
  background: white;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  display: block;
}
.logo .brand-name {
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5px;
}

.nav-menu li a {
  color: var(--text-dark);
  text-decoration: none;
  padding: 10px 18px;
  display: block;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 6px;
  font-size: 1rem;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.nav-menu li a.btn-book {
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 24px;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
  margin-left: 10px;
}

.nav-menu li a.btn-book:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Menu Active State */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #fff !important;
    width: 100%;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    padding: 15px;
    width: 100%;
    display: block;
    margin: 5px 0;
    border-radius: 0;
    color: #3a2e13 !important;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 6px #fff8e1;
  }

  .menu-toggle {
    display: flex;
  }

  .logo img {
    height: 34px;
  }
  .logo .brand-name {
    font-size: 1.3rem;
  }
  
  /* Hide navbar Book Now button on mobile */
  .nav-menu li a.btn-book {
    display: none;
  }
}
