/* Navbar Component Styles */
.site-header {
  position: fixed; 
  top: 0; 
  width: 100%;
  z-index: 1000;
  background: rgba(15,15,16,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: all 0.3s ease;
}

.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: .8rem 0; 
  min-height: 70px;
}

/* Header sections */
.header-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

/* Brand/Logo */
.brand { 
  color: var(--text); 
  text-decoration: none; 
  font-weight: 700; 
  font-size: 1.2rem; 
  display: flex;
  align-items: center;
  gap: .6rem;
  z-index: 1001;
}

.brand img { 
  height: 36px; 
  width: auto; 
  border-radius: 8px;
  display: block;
}

.brand-text { 
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.3rem;
}

/* Navigation Menu */
.site-nav { 
  display: flex; 
  gap: 1.5rem; 
  align-items: center;
  padding: .4rem 0;
  justify-content: center;
  flex: 2;
}

.site-nav a { 
  color: var(--text); 
  text-decoration: none; 
  padding: .4rem .6rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: .9rem;
  transition: all .2s ease;
  white-space: nowrap;
}

.site-nav a:hover { 
  color: var(--primary); 
  background: rgba(209,165,91,.1);
}

.site-nav a.is-active {
  color: var(--primary);
  background: rgba(209,165,91,.15);
}

.site-nav .btn {
  margin-left: .5rem;
  padding: .6rem 1.2rem;
  font-size: .85rem;
  border-radius: 25px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 600;
}

.site-nav .btn:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
}

/* Show booking button in desktop navbar */
.site-nav a[href="#contact"].btn-primary {
  display: inline-block;
}

/* Mobile Toggle Button */
.nav-toggle { 
  display: none; 
  background: transparent; 
  color: var(--text); 
  border: 1px solid rgba(255,255,255,.12); 
  padding: .4rem .6rem; 
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  transition: all .2s ease;
}

.nav-toggle:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.2);
}

/* Hamburger Icon */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 20px;
  height: 16px;
  justify-content: center;
}

.hamburger .line {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all .3s ease;
}

.nav-toggle[aria-expanded="true"] .hamburger .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger .line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-text {
  font-size: .85rem;
  font-weight: 500;
}

/* Mobile Styles */
@media (max-width: 860px) {
  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none !important;
  }
  .nav-toggle { 
    display: flex; 
    background: rgba(30,31,36,.9); 
    border: 1px solid rgba(255,255,255,.2); 
    padding: .5rem .8rem;
    border-radius: 8px;
    color: var(--text);
    z-index: 1002;
  }
  
  /* Ensure header and brand are always visible */
  .site-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .header-left {
    flex: none;
  }
  
  .header-right {
    flex: none;
  }
  
  .brand {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
  }
  
  .brand img {
    height: 32px;
  }
  
  .brand-text {
    font-size: 1.1rem;
  }
  
  /* Mobile Navigation Menu */
  .site-nav { 
    position: fixed; 
    top: 70px;
    left: 0;
    right: 0; 
    background: rgba(15,15,16,.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,.1); 
    padding: 1.5rem; 
    display: flex;
    flex-direction: column;
    gap: .8rem; 
    transform: translateY(-100%); 
    transition: transform .3s ease;
    flex: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    z-index: 1000;
    position: fixed;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }
  
  .site-nav.open { 
    transform: translateY(0); 
  }
  
  .site-nav a {
    padding: .8rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
    transition: all .2s ease;
  }
  
  .site-nav a:hover {
    background: rgba(209,165,91,.1);
    border-color: rgba(209,165,91,.2);
  }
  
  .site-nav a.is-active {
    background: rgba(209,165,91,.15);
    border-color: rgba(209,165,91,.3);
  }
  
  /* Hide booking button in mobile menu */
  .site-nav a[href="#contact"].btn-primary {
    display: none !important;
  }
  
  .site-nav a[href="#contact"].btn-primary:hover {
    background: var(--primary-600);
  }
  
  /* Ensure mobile menu covers full screen */
  .site-nav {
    min-height: calc(100vh - 70px);
    justify-content: flex-start;
    padding-top: 2rem;
  }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .header-inner {
    padding: .6rem 0;
    min-height: 60px;
  }
  
  .brand img {
    height: 28px;
  }
  
  .brand-text {
    font-size: 1rem;
  }
  
  .nav-toggle {
    padding: .4rem .6rem;
  }
  
  .menu-text {
    display: none;
  }
  
  .site-nav {
    top: 60px;
    padding: 1rem;
    min-height: calc(100vh - 60px);
  }
}

/* Ensure navbar is always visible on scroll */
.site-header.scrolled {
  background: rgba(15,15,16,.98);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
