/* ===========================================
   global.css
   Shared nav, footer, and base styles.
   Include on every page alongside the
   page-specific stylesheet.
=========================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C8922A;
  --gold-light: #E2A83C;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --off-white: #f5f0e8;
  --white: #ffffff;
  --text-muted: #888;
  --pink: #f5e5e7;
  --nav-h: 85px;
}



html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

nav.scrolled {
  background: rgba(10, 10, 10, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.2);
}

/* Nav gets frosted glass when menu is open (on hero) */
nav.menu-open:not(.scrolled) {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: clamp(60px, 12vw, 130px);
  height: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 36px);
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}



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

.nav-links .current{
  color: #f3b137;
}

.mobile-menu .current{
  color: #f3b137;
}




.nav-icons {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
  flex-shrink: 0;
}

.nav-social img {
  width: clamp(18px, 2.5vw, 24px);
  height: clamp(18px, 2.5vw, 24px);
  object-fit: contain;
  display: block;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav-social:hover img { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animate hamburger → X when menu is open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 24px;
  z-index: 999;
  border-bottom: 1px solid rgba(200, 146, 42, 0.15);
  flex-direction: column;
  gap: 4px;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.mobile-menu.open { display: flex; }

.mobile-menu.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid rgba(200, 146, 42, 0.2);
}

.mobile-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ===========================================
   FOOTER
   Replace the footer section in global.css
   with this block.
=========================================== */
 
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(48px, 7vw, 80px) clamp(16px, 4vw, 48px) 0;
}
 
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
 
/* ── TOP ROW: logo + 3 columns ── */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 60px);
  padding-bottom: clamp(40px, 6vw, 64px);
  align-items: start;
}
 
/* Brand / logo column */
.footer-brand {
  display: flex;
  align-items: flex-start;
}
 
.footer-logo {
  width: clamp(110px, 16vw, 190px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.1);
}
 
/* Column headings — gold, spaced caps */
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
 
/* Body text and links */
.footer-col p {
  font-size: clamp(12px, 1.3vw, 13px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
}
 
.footer-col a {
  display: block;
  font-size: clamp(12px, 1.3vw, 13px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.2s;
}
 
.footer-col a:last-child { margin-bottom: 0; }
.footer-col a:hover { color: var(--gold); }
 
/* ── CONNECT column: icon + text rows ── */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
 
.footer-contact-item:last-child { margin-bottom: 0; }
 
.footer-contact-icon {
  width: clamp(14px, 1.8vw, 16px);
  height: clamp(14px, 1.8vw, 16px);
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  filter: invert(62%) sepia(60%) saturate(500%) hue-rotate(5deg) brightness(95%);
}
 
.footer-contact-item a,
.footer-contact-item span {
  font-size: clamp(12px, 1.3vw, 13px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
 
.footer-contact-item a:hover { color: var(--gold); }
 
/* ── BOTTOM BAR ── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: clamp(16px, 2.5vw, 22px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
 
.footer-bottom p {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}
 
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
 
.footer-bottom-links a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
 
.footer-bottom-links a:hover { color: var(--gold); }

/* ─────────────────────────────────────────
   RESPONSIVE — NAV & FOOTER
───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 40px);
  }
 
  /* Logo spans full width on its own row */
  .footer-brand {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: clamp(20px, 3vw, 28px);
  }
}

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

@media (max-width: 380px) {
  :root { --nav-h: 56px; }
}