/* ================================
   NAVBAR COMPONENT
   ================================ */

/* Container setup */
.nav {
  background: transparent;
  transition: background 0.3s ease;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 94px;
}

/* Brand */
.brand {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.3rem;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  text-decoration: none;
}

/* Nav menu */
.logo-nav {
  height: 28px;
  width: auto;
  display: block;
  margin-top: 8px;
 fill: rgba(255, 255, 255, 0.6);
}

.logo-nav:hover {
  fill: #fff; /* full white on hover */
}

.nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-menu li a {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .nav .container {
    flex-direction: column;
    align-items: center;
    padding: 16px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 1rem;
    padding: 2rem 0;
    position: relative;
    z-index: 9999;
  }

  .nav-menu li {
    width: 100%;
    position: relative;
    z-index: 9999;
  }

  .nav-menu li a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
    text-align: center;
    touch-action: manipulation;
    position: relative;
    z-index: 9999;
  }
}

/* ================================
   OPTIONAL STICKY NAV BEHAVIOR
   ================================ */

.nav.sticky {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

/* Adjust nav text when sticky */
.nav.sticky .brand,
.nav.sticky .nav-menu li a {
  color: #333 !important;
  text-shadow: none !important;
}

.nav.sticky .nav-menu li a:hover {
  color: #000 !important;
}