/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Exo:wght@600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --gold: #C8A028;
  --gold-bright: #F0C040;
  --gold-dark: #9A7820;
  --black: #000000;
  --black-mid: #0D0D0D;
  --black-soft: #1A1A1A;
  --black-card: #111111;
  --white: #FFFFFF;
  --white-dim: rgba(255,255,255,0.75);
  --white-faint: rgba(255,255,255,0.12);
  --grad-gold: linear-gradient(135deg, #C8A028 0%, #F0C040 50%, #C8A028 100%);
  --font-head: 'Exo', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.section-title, .hero-hours,
nav, .btn-gold, .btn-outline-gold,
.nav-links a, .mobile-menu a,
.section-label, .footer-col h4 {
  font-family: var(--font-head);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 200;
  border-bottom: 1px solid rgba(200,160,40,0.2);
}

.nav-logo img { height: 55px; width: auto; }

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

.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

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

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--black);
  border-bottom: 1px solid rgba(200,160,40,0.2);
  z-index: 199;
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 0;
}

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

.mobile-menu a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--grad-gold);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,160,40,0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,160,40,0.6);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
  font-weight: 400;
  max-width: 560px;
}

/* ── FOOTER ── */
footer {
  background: var(--black-mid);
  border-top: 1px solid rgba(200,160,40,0.15);
  padding: 3rem 5% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand img { height: 50px; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a {
  font-size: 0.87rem;
  color: var(--white-dim);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.social-links { display: flex; gap: 0.8rem; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200,160,40,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-dim);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ── MISC ── */
.gold-divider {
  width: 60px; height: 3px;
  background: var(--grad-gold);
  border-radius: 3px;
  margin: 1rem 0 1.5rem;
}

.page-wrap { padding-top: 80px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
