@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');

:root{
  --bg:#0b0f14;
  --panel:#111826;
  --text:#e9eef6;
  --muted:#b7c2d0;
  --line:rgba(255,255,255,.12);
  --accent:#f6c453;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
  color:var(--text);
  background:linear-gradient(180deg,#070a0f 0%,#0b0f14 60%,#070a0f 100%);
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1100px;margin:0 auto;padding:0 16px}

/* =====================
   HEADER
===================== */
.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(7,10,15,.9);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  height:44px;
}

.brand-name{
  font-family:'Black Ops One', system-ui, sans-serif;
  font-size:18px;
  letter-spacing:.6px;
}

.brand-sub{
  font-size:13px;
  color:var(--muted);
}

/* =====================
   NAV
===================== */
.nav{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav a{
  padding:8px 10px;
  border-radius:10px;
}

.nav a:hover{
  background:rgba(255,255,255,.06);
}

/* =====================
   BUTTONS
===================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  font-weight:650;
}

.btn.primary{
  background:linear-gradient(145deg,#f6c453,#d9aa38);
  color:#141414;
  border-color:#f6c453;
}

.btn.ghost{background:transparent}

/* =====================
   HERO (FIXED)
===================== */
.hero-image{
  position:relative;
  height:300px;
  overflow:hidden;
  display:flex;
  align-items:center;
  border-bottom:1px solid var(--line);
}

/* BACKGROUND IMAGE */
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 35%;
  z-index:0;
  filter:brightness(.65) saturate(.9);
  transform:scale(1.02);
}

/* DARK OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.75) 60%,
    rgba(0,0,0,.85) 100%
  );
}

/* TEXT PANEL */
.hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
  padding:18px 20px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.15);
  border-radius:16px;
  backdrop-filter: blur(4px);
}

/* HERO TEXT */
h1{
  font-family:'Black Ops One', system-ui, sans-serif;
  font-size:36px;
  line-height:1.1;
  letter-spacing:.6px;
  margin:0;
  color:#fff;
  text-shadow:0 2px 16px rgba(0,0,0,.8);
}

.lead{
  margin:10px 0 0;
  font-size:17px;
  color:rgba(255,255,255,.92);
}

.hero-cta{
  display:flex;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}

.notice{
  margin-top:12px;
  padding:10px 12px;
  background:rgba(255,255,255,.08);
  border-radius:12px;
  border:1px solid var(--line);
}

/* =====================
   SECTIONS
===================== */
.section{padding:34px 0}

.section.alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

h2{
  font-family:'Black Ops One', system-ui, sans-serif;
  font-size:26px;
  letter-spacing:.5px;
  margin:0;
}

h3{
  font-family:'Black Ops One', system-ui, sans-serif;
  font-size:18px;
  margin:0 0 6px;
}

.muted{color:var(--muted)}

/* =====================
   IMAGES
===================== */
.section-image{
  width:100%;
  height:240px;
  object-fit:cover;
  object-position:center 45%;
  border-radius:18px;
  margin:14px 0 18px;
  border:1px solid var(--line);
  box-shadow:0 12px 32px rgba(0,0,0,.3);
}

/* =====================
   CARDS
===================== */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.card{
  background:linear-gradient(180deg,#111826,#0f1622);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}

/* =====================
   HOURS / LOCATION
===================== */
.hours,
.location{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:14px;
}

.list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.list li{
  display:flex;
  justify-content:space-between;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
}

.mini-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

/* =====================
   FOOTER
===================== */
.site-footer{
  padding:22px 0;
  border-top:1px solid var(--line);
  background:rgba(7,10,15,.75);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width:900px){
  .cards{grid-template-columns:1fr}
  .hours,.location{grid-template-columns:1fr}
  .hero-image{height:280px}
  h1{font-size:32px}
}

@media (max-width:520px){
  .logo{height:38px}
  .hero-image{height:250px}
  h1{font-size:28px}
  .section-image{height:200px}
}


 .age-gate{
    position: fixed;
    inset: 0;
    display: none;               /* shown by JS */
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.82);
    z-index: 2147483647;         /* on top of everything */
  }
  .age-gate.is-visible{ display: flex; }

  .age-gate__card{
    width: min(520px, 100%);
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    text-align: center;
    font-family: Arial, sans-serif;
  }
  .age-gate__card h2{ margin: 0 0 10px; font-size: 26px; }
  .age-gate__card p{ margin: 0 0 16px; font-size: 16px; line-height: 1.35; }

  .age-gate__buttons{
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0 12px;
  }
  .age-gate__btn{
    border: 0;
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
  }
  .age-gate__btn--yes{ background: #1f7a1f; color: #fff; }
  .age-gate__btn--no{ background: #b00020; color: #fff; }

  .age-gate__fineprint{
    display: block;
    color: #555;
    font-size: 12px;
  }
  
  #ageGate .age-gate__card,
#ageGate .age-gate__card *{
  color: #111 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#ageGate .age-gate__card p{
  display: block !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  margin: 0 0 16px !important;
}
