/* ============================================================
   AURRA LUXURY SALON — NAVIGATION & FOOTER
   ============================================================ */

/* ─── NAV ─── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--black);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#main-nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.60);
  border-bottom-color: rgba(201,168,76,0.22);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  transition: var(--t-fast);
}
.nav-logo:hover { opacity: 0.85; }

.logo-name {
  font-family: var(--font-accent);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  line-height: 1;
}

.logo-tag {
  font-family: var(--font-body);
  font-size: 0.60rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-left: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.28s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.32s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Book Now button in nav */
.nav-book-btn {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--t-fast);
  text-decoration: none;
  display: inline-block;
}
.nav-book-btn:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.30);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}
.ham-line {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--t-mid);
  transform-origin: center;
}

.hamburger.open .ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--charcoal);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 48px;
  gap: 8px;
  transition: right 0.40s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(201,168,76,0.15);
  box-shadow: -20px 0 60px rgba(0,0,0,0.60);
}
.mobile-drawer.open { right: 0; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1040;
  display: none;
  backdrop-filter: blur(4px);
}
.drawer-overlay.show { display: block; }

.mobile-nav-link {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,168,76,0.10);
  transition: color 0.25s ease, padding-left 0.25s ease;
  text-decoration: none;
  display: block;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); padding-left: 8px; }
.mobile-book-btn {
  display: block;
  text-align: center;
  margin-top: 30px;
  padding: 15px 24px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 600;
  transition: var(--t-fast);
  text-decoration: none;
}
.mobile-book-btn:hover { background: var(--gold-light); }

/* ─── FOOTER ─── */
#main-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.18);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(201,168,76,0.10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 56px;
}

/* Footer Logo Column */
.footer-brand .logo-name { font-size: 1.9rem; display: block; margin-bottom: 6px; }
.footer-brand .logo-tag  { display: block; margin-bottom: 22px; }
.footer-brand p          { color: var(--text-muted); font-size: 0.90rem; line-height: 1.78; max-width: 280px; }

/* Footer Socials */
.footer-socials { display: flex; gap: 14px; margin-top: 28px; }
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--t-fast);
  text-decoration: none;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.10);
  transform: translateY(-3px);
}

/* Footer Columns */
.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.90rem;
  transition: color 0.22s ease;
  position: relative;
  padding-left: 0;
}
.footer-links a:hover { color: var(--gold); }

/* Footer Hours */
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-hours-row span:first-child { color: var(--text-muted); font-size: 0.88rem; }
.footer-hours-row span:last-child  { color: var(--text-light); font-size: 0.88rem; }

/* Footer Contact Info */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.62;
}
.footer-contact-item .f-icon { color: var(--gold); flex-shrink: 0; font-size: 0.9rem; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); transition: color 0.22s; }
.footer-contact-item a:hover { color: var(--gold); }

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  color: var(--text-faint);
  font-size: 0.82rem;
}
.footer-copy span { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 26px; }
.footer-bottom-links a {
  color: var(--text-faint);
  font-size: 0.80rem;
  transition: color 0.22s;
  font-family: var(--font-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ─── RESPONSIVE NAV / FOOTER ─── */
@media (max-width: 960px) {
  .nav-links, .nav-book-btn { display: none; }
  .hamburger { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
