/* ================================================================
   QUACKERS FIRE GRILL & BAR — Shared Stylesheet
   Nightlife-first design system
   ================================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0D0D0D;
  --dark:     #141414;
  --card:     #1C1C1C;
  --border:   #2A2A2A;
  --gold:     #D4AF37;
  --gold-lt:  #E8CC6A;
  --replay:   #C17F3A;
  --saturday: #D4AF37;
  --micdrop:  #7B2D42;
  --white:    #F5F5F5;
  --muted:    #888888;
  --ff-disp:  'Bebas Neue', sans-serif;
  --ff-head:  'Oswald', sans-serif;
  --ff-body:  'Raleway', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3 { line-height: 1.1; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.nav-logo-text {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  line-height: 1.15;
}

.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.nav-desktop {
  display: none;
  gap: 0.1rem;
}

.nav-desktop a {
  font-family: var(--ff-head);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.nav-desktop a.nav-nightlife { color: var(--gold); }

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

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

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 199;
  padding: 1.5rem 1.25rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.35rem;
}

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

.nav-mobile-label {
  font-family: var(--ff-head);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  padding: 1rem 1rem 0.25rem;
}

.nav-mobile a {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.85rem 1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s;
  display: block;
}

.nav-mobile a:hover {
  color: var(--gold);
  background: rgba(212,175,55,0.07);
  border-color: rgba(212,175,55,0.18);
}

.nav-mobile a.sub {
  padding-left: 2rem;
  font-size: 0.9rem;
}

/* Page content offset for fixed nav */
.page-body { padding-top: 64px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.22s;
  white-space: nowrap;
  min-height: 44px;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #0D0D0D;
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}
.btn-ghost:hover { color: var(--white); }

/* === SECTION DEFAULTS === */
.section { padding: 5rem 1.5rem; }
.section-dark  { background: var(--dark); }
.section-black { background: var(--black); }

.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner-narrow { max-width: 700px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-heading {
  font-family: var(--ff-disp);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.section-rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2.75rem;
}

/* === CARDS === */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.card-hover {
  transition: transform 0.22s, box-shadow 0.22s;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

/* === NIGHT ACCENT BORDERS === */
.accent-replay   { border-top: 3px solid var(--replay); }
.accent-saturday { border-top: 3px solid var(--saturday); }
.accent-micdrop  { border-top: 3px solid var(--micdrop); }

/* === PILL / TAG === */
.pill {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.28rem 0.8rem;
  border-radius: 2px;
}

/* === FORM ELEMENTS === */
.field {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  min-height: 44px;
}

.field:focus { outline: none; border-color: var(--gold); }
.field::placeholder { color: var(--muted); }

textarea.field { resize: vertical; min-height: 120px; }

/* === FOOTER === */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-brand {
  font-family: var(--ff-disp);
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.25rem;
  margin-bottom: 2.5rem;
}

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

.footer-col-label {
  font-family: var(--ff-head);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.9;
}

.footer-text a { color: var(--muted); transition: color 0.2s; }
.footer-text a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: border-color 0.2s, background 0.2s;
}

.footer-social-btn:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.1);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
}

/* === NIGHT LINK ARROW === */
.arrow-link {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.arrow-link:hover { gap: 0.7rem; }

/* === RESPONSIVE === */
@media (min-width: 600px) {
  .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .nav-desktop  { display: flex; }
  .nav-hamburger { display: none; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
