/* =====================================================
   SITE HEADER (FIXED TOP)
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 77, 0.15);
}

.header-inner {
  max-width: 100%;
  height: 100%;
  padding: 0 5%;
  display: flex;
  justify-content: space-between; /* LOGO LEFT | NAV RIGHT */
  align-items: center;
}

.logo img {
  height: 60px; /* Adjust based on your logo shape */
  width: auto;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* =====================================================
   MOBILE NAVIGATION
   ===================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--gold);
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%; /* Hidden by default */
    width: 80%;
    height: calc(100vh - var(--header-height));
    background: #0e0e0e;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    transition: 0.4s ease-in-out;
  }

  .nav-links.active { right: 0; }
}

/* =====================================================
   SITE FOOTER
   ===================================================== */
.site-footer {
  padding: 4rem 5% 2rem;
  text-align: center;
  background: #050505;
  border-top: 1px solid rgba(201, 162, 77, 0.1);
}

.site-footer p {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}