/* Shared Navigation & Footer Styles */

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

nav .logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.3em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
}

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

nav .nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

nav .nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
  }

  nav .nav-links.open {
    display: flex;
  }

  nav .nav-links li {
    width: 100%;
    text-align: center;
  }

  nav .nav-links a {
    display: block;
    padding: 12px 24px;
  }
}

/* FOOTER */
footer {
  background: #0D0D1A;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 24px;
  font-size: 0.85em;
}
