/* ═══════════════════════════════════════════════
   GARVER EVENTS — Shared Styles
   ═══════════════════════════════════════════════ */

@font-face {
  font-family: 'Lust';
  src: url('Lust-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lust';
  src: url('Lust-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'LustDisplay';
  src: url('Lust-Display.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ProximaNova';
  src: url('ProximaNova-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ProximaNova';
  src: url('ProximaNova-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ProximaNova';
  src: url('ProximaNova-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CourierNewBold';
  src: url('CourierNew-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Legacy alias — keeps existing references working during transition */
@font-face {
  font-family: 'FreightDisp';
  src: url('Lust-Regular.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --black: #212630;
  --off-white: #f7f5f0;
  --cream: #ede9e0;
  --teal: #2a7f7b;
  --teal-dark: #1f6460;
  --navy: #212630;
  --chartreuse: #d6dc29;
  --brand-red: #ca3326;
  --lounge-teal: #00505c;
  --red: #b8301c;
  --red-light: #d94025;
  --gold: #c9a84c;
  --gray: #6b6b68;
  --light-gray: #e8e5de;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'ProximaNova', sans-serif;
  background: var(--off-white);
  color: var(--navy);
  font-size: 19px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ── NAVIGATION ── */
nav {
  background: rgba(33,38,48,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 0;
  height: 64px;
  align-items: stretch;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-link {
  color: #aaa;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: 'CourierNewBold', 'Courier New', monospace;
}

.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; border-bottom-color: var(--teal); }

.nav-link .arrow {
  font-size: 8px;
  transition: transform 0.2s;
  display: inline-block;
}

.nav-item:hover .nav-link .arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--teal);
  border-radius: 0 0 4px 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #999;
  font-weight: 400;
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
}

.nav-dropdown a:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  padding-left: 24px;
}

.nav-dropdown .dropdown-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
  padding: 12px 20px 4px;
  cursor: default;
  font-family: 'CourierNewBold', 'Courier New', monospace;
}

.nav-dropdown .dropdown-label:hover {
  background: none;
  padding-left: 20px;
  color: #bbb;
}

.nav-dropdown .dropdown-label-link {
  cursor: pointer;
  transition: color 0.15s;
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
  text-decoration: none;
  font-family: 'CourierNewBold', 'Courier New', monospace;
}

.nav-dropdown .dropdown-label-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.nav-dropdown .divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 6px 0;
}

.nav-cta {
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'CourierNewBold', 'Courier New', monospace;
  padding: 10px 20px;
  border-radius: 2px;
  margin-left: 1rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dark); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'CourierNewBold', 'Courier New', monospace;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-outline {
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'CourierNewBold', 'Courier New', monospace;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--teal-dark); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'CourierNewBold', 'Courier New', monospace;
  padding: 13px 28px;
  border-radius: 2px;
  border: 1px solid var(--light-gray);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline-dark:hover { border-color: var(--navy); background: var(--cream); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'CourierNewBold', 'Courier New', monospace;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-gold:hover { opacity: 0.85; }

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── SECTION PATTERNS ── */
.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  font-family: 'CourierNewBold', 'Courier New', monospace;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: 'FreightDisp', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
}

.see-all {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.see-all:hover { color: var(--navy); border-color: var(--navy); }

/* Page hero */
.page-hero {
  background: var(--black);
  padding: 8rem 3rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(33,38,48,0.0), rgba(33,38,48,0.18));
  z-index: 1;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero .section-eyebrow { color: var(--teal); margin-bottom: 1rem; }

.page-hero h1 {
  font-family: 'FreightDisp', Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 17px;
  color: #aaa;
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* Content sections */
.content-section {
  padding: 5rem 3rem;
}

.content-section.dark {
  background: var(--navy);
  color: #fff;
}

.content-section.cream {
  background: var(--cream);
}

.content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.content-wide {
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5px;
  background: var(--light-gray);
  border: 1.5px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.card-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card-grid.dark-grid {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.07);
}

.card {
  background: var(--off-white);
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s;
}

.card:hover { background: var(--cream); }

.card-dark {
  background: rgba(255,255,255,0.04);
}
.card-dark:hover { background: rgba(255,255,255,0.08); }

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 6px;
}

.card-title {
  font-family: 'FreightDisp', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.2;
}

.card-meta {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
}

.card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
  margin-top: 8px;
}

/* Split layout */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Info box */
.info-box {
  background: var(--cream);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.info-box h3 {
  font-family: 'FreightDisp', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.info-box p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Hours / schedule table */
.hours-list {
  list-style: none;
  margin-bottom: 2rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--gray);
}

.hours-list li span:first-child { font-weight: 500; color: var(--navy); }

.hours-list li.closed span { color: var(--red); }

/* Annual event row */
.annual-event {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--light-gray);
  align-items: center;
}

.annual-event:last-child { border-bottom: none; }

.annual-event img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.annual-event h3 {
  font-family: 'FreightDisp', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 4px;
}

.annual-event .event-timing {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.annual-event p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* Reservation policy */
.reservation-policy {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.reservation-policy h3 {
  font-family: 'FreightDisp', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  background: var(--black);
  color: #fff;
  padding: 1rem 1.5rem;
}

.policy-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  font-size: 16px;
  align-items: start;
}

.policy-row:last-child { border-bottom: none; }

.policy-row .policy-label {
  font-weight: 500;
  color: var(--navy);
  font-size: 13px;
}

.policy-row .policy-detail {
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
}

.policy-row .policy-detail a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Photo scroll */
.photo-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.photo-scroll img {
  flex: 0 0 auto;
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  scroll-snap-align: start;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-tagline {
  font-size: 13px;
  color: #666;
  font-weight: 300;
  line-height: 1.6;
  max-width: 220px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 1rem;
  font-family: 'CourierNewBold', 'Courier New', monospace;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 12px;
  color: #444;
  font-weight: 300;
}

.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: #888; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .page-hero { padding: 7rem 2rem 3rem; }
  .page-hero h1 { font-size: 40px; }
  .content-section { padding: 3.5rem 2rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-img { min-height: 300px; }
  .card-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .card-grid.cols-3 { grid-template-columns: 1fr; }
  .annual-event { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    height: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

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

  .nav-item {
    flex-direction: column;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-link {
    height: 48px;
    padding: 0 1.5rem;
    border-bottom: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 8px 1rem;
    background: rgba(255,255,255,0.03);
  }

  .nav-dropdown a { padding: 8px 1.5rem; font-size: 12px; }

  .nav-toggle { display: block; }

  .page-hero { padding: 6rem 1.5rem 2.5rem; }
  .page-hero h1 { font-size: 34px; }
  .content-section { padding: 3rem 1.5rem; }
  .card-grid.cols-2,
  .card-grid.cols-3,
  .card-grid.cols-4 { grid-template-columns: 1fr; }
  .split-content { padding: 2.5rem 1.5rem; }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .policy-row { grid-template-columns: 1fr; gap: 4px; }

  footer {
    padding: 2rem 1.5rem;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
