/* ============================================
   NAVIGATION & MOBILE MENU
   ============================================ */

nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s ease;
}
nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 18px; color: var(--gold);
  letter-spacing: 0.15em; text-decoration: none;
}
.nav-logo span { color: var(--white); }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: rgba(245,240,232,0.7);
  text-decoration: none; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--glass-border);
  padding: 10px 24px; text-decoration: none;
  transition: all 0.3s; backdrop-filter: blur(10px);
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transform: translateX(100%); transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; color: var(--white);
  text-decoration: none; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* Floating Social Icons */
.float-social {
  position: fixed; right: 24px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px;
  z-index: 100;
}
.float-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--white); font-size: 16px;
  backdrop-filter: blur(10px); background: rgba(8,8,8,0.5);
  transition: all 0.3s; position: relative;
}
.float-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }
.float-btn-label {
  position: absolute; right: 52px;
  background: var(--dark3); border: 1px solid var(--glass-border);
  padding: 4px 12px; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  white-space: nowrap; color: var(--gold);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.float-btn:hover .float-btn-label { opacity: 1; }
