:root { --green:#098520; --ink:#e7efe9; --muted:rgba(255,255,255,.82); --surface:rgba(255,255,255,.06); --border:rgba(255,255,255,.12); }
*{box-sizing:border-box}
/* Ensure the page creates a stacking context above the smoke */
html, body { background:#000; }
body { position: relative; z-index: 0; }
.smoke-background {
    position: fixed; /* Ensures it doesn't scroll with the page */
    inset: 0; /* Full screen: top:0; right:0; bottom:0; left:0; */
    background: url('../assets/bg_smoke.jpg') center bottom no-repeat; /* <-- Starts at the bottom */
    background-size: 100% auto; /* Adjusts width to 100%, keeps aspect ratio */
    opacity: .25;
    filter: contrast(1.1) brightness(.95);
    z-index: -50; /* Needs a very low negative z-index to be behind everything */
    pointer-events: none;
}
html,body{margin:0;color:#fff;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:#000}
a{color:var(--ink);text-decoration:none} a:hover{color:#fff}
.container{width:min(1180px,92%);margin:0 auto}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Base layout (applies to all) */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:16px;
}

/* === Desktop Header Alignment (Stable, correct order & spacing) === */
@media (min-width:821px){
  .header-inner{
    display:grid;
    grid-template-columns:auto 1fr auto;
    grid-template-areas:"logo nav cta";
    align-items:center;
  }

  /* Logo — always left */
  .header-inner img.logo,
  .header-inner a[href*="index.html"] {
    grid-area:logo;
    justify-self:start;
  }

  /* Nav — always centered */
  .desktop-nav{
    grid-area:nav;
    display:flex;
    justify-content:center;
    gap:24px;
  }

  /* CTA (Weedmaps) — always right */
  .cta{
    grid-area:cta;
    justify-self:end;
  }

  /* Hide hamburger on desktop */
  .menu-btn{
    display:none;
  }
}

.logo{height:46px}
.nav{display:flex;gap:14px;flex-wrap:wrap}
.nav a{padding:10px 12px;border-radius:10px;color:var(--muted)}
.nav a.active,.nav a:hover{background:rgba(255,255,255,.08);color:#fff}
.cta{padding:10px 16px;border-radius:12px;background:var(--green);color:#fff;font-weight:700}
.btn-ghost {
  padding:10px 16px;
  border-radius:12px;
  border:2px solid rgba(255,255,255,0.9); /* brighter + thicker */
  background:transparent;
  color:#fff;
  font-weight:700;
  text-shadow:0 1px 3px rgba(0,0,0,0.5);
}
.hero{position:relative;min-height:75vh;display:grid;place-items:center;text-align:center;overflow:hidden;}
.hero::before{content:'';position:absolute;inset:0;background:url('../assets/hero_bg.png') center 10%/cover no-repeat;filter:saturate(1.2) contrast(.99)}

.hero .content{position:relative;z-index:1;padding:75px 0}
.h1{font-size:clamp(36px,6vw,64px);line-height:1.06;margin:0 0 10px;text-shadow:0 2px 20px rgba(0,0,0,.5)}
.lead{font-size:clamp(18px,2.4vw,22px);color:#e6efe8;margin-bottom:24px;text-shadow:0 2px 12px rgba(0,0,0,.4)}
.section{padding:56px 0}
.row{display:grid;grid-template-columns:repeat(12,1fr);gap:18px}
.card{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:18px;box-shadow:0 2px 20px rgba(0,0,0,.24)}
.brand-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.brand-card{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:16px;display:flex;flex-direction:column;gap:8px}
.brand-card h4{margin:0}
.brand-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 10px;
}
.socials{display:flex;gap:14px;align-items:center}
.socials a{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:999px;border:1px solid var(--border);background:var(--surface);color:#fff}
footer{border-top:1px solid rgba(255,255,255,.08)}
footer .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px}
.hours li{display:flex;justify-content:space-between;border-bottom:1px dashed rgba(255,255,255,.1);padding:6px 0;color:var(--muted)}
.map{border:0;width:100%;height:320px;border-radius:16px}
.notice{color:var(--muted);font-size:14px;text-align:center;margin-top:10px}
@media (max-width:820px){.nav{display:none}}
.menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

@media (max-width:768px){
  .header-inner{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    align-items:center;
  }
  /* shift center column slightly right for visual balance */

  .menu-btn{ 
    grid-column:1; 
    justify-self:start;
    display:block;
    background:transparent;
    border:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
  }
  .logo{
    grid-column:2;
    justify-self:center;
    position:static;
    transform:none;
    height:40px;
  }
  .cta{
    grid-column:3;
    justify-self:end;
    font-size:14px;
    padding:8px 10px;
  }
  .menu{
    background:rgba(0,0,0,0.95);
    padding:20px;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    z-index:999;
    flex-direction:column;
    gap:10px;
    opacity:0;
    transform:translateY(-10px);
    transition:opacity 0.3s ease,transform 0.3s ease;
  }
  .menu.show{
    display:flex;
    opacity:1;
    transform:translateY(0);
  }
}

.cta.stacked {
  white-space: normal;
  line-height: 1.2;
  text-align: center;
  min-height: 48px;
  padding: 12px;
}
.maps-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.2;
  padding: 0.875rem 1.25rem;
  min-height: 3rem;
  border-radius: 6px;
  background-color: #00923F; /* restore green */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color .2s ease-in-out;
}
.maps-btn:hover {
  background-color: #007b34;
}

@media (min-width:768px){
  .maps-btn {
    flex-direction: row;
    gap: 0.4rem;
    min-height: 2.5rem;
  }
}
/*=========================================
REVIEWS
===========================================*/

.review {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
}

.review-author {
  font-weight: 600;
  margin-top: .5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.review-stars {
  font-size: 20px;
  color: #ffd700; /* gold */
  margin-bottom: 10px;
}

.review-stars .star-dim {
  color: rgba(255,255,255,0.25); /* dimmed stars */
}



/* Make hero text bold */
.hero .lead,
.hero .cta,
.hero .btn-ghost {
  font-weight: 700;
}

/* --------------------------------------------- */
/* WEEDMAPS EMBED — FINAL & CORRECT IMPLEMENTATION */
/* --------------------------------------------- */

/* Padding wrapper — this is what actually works */
.menu-embed .wm-wrapper {
  padding-left: 4%;
  padding-right: 4%;
  box-sizing: border-box;
  width: 100%;
}

/* Force iframe to fit within wrapper padding */
.menu-embed #wm-embed-root iframe {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Weedmaps embed – robust side padding inside the menu page */
.menu-frame iframe[src*="wm.store"] {
  display: block;
  width: 100%;
  max-width: 100%;
  padding-left: 4%;
  padding-right: 4%;
  box-sizing: border-box;
}

/* Reviews fade effect */
#reviews {
  transition: opacity .4s ease-in-out;
}


/* IMPORTANT:
   Do NOT add height, max-height, or overflow to:
   .menu-frame, .menu-embed, or #wm-embed-root
*/

/* --------------------------- */
/*     HAPPY LITTLE TREES      */
/*        AGE   GATE           */
/* --------------------------- */

#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: none; /* default state */
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#age-gate.show {
  display: flex;
  animation: fadeInGate 0.4s ease-out forwards;
}

#age-gate.hide {
  animation: fadeOutGate 0.4s ease-out forwards;
}

@keyframes fadeInGate {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOutGate {
  from { opacity: 1; }
  to { opacity: 0; }
}

.age-gate-box { /* FIXED — matches HTML */
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px 44px;
  width: 92%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease-out forwards;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.age-gate-logo {
  width: 130px;
  margin-bottom: 10px;
}

.age-gate-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.age-gate-buttons button {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: 0.25s ease;
}

.age-gate-buttons #age-yes {
  background: #098520;
  color: #fff;
}

.age-gate-buttons #age-no {
  background: #333;
  color: #fff;
}


/* ===========================================
   Weedmaps embed padding fix — final
   Forces iframe padding regardless of WM script
   =========================================== */
iframe[src*="wm.store"] {
  padding-left: 5% !important;
  padding-right: 5% !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
}


/* Weedmaps iframe → shrink to respect the padded root */
.menu-embed #wm-embed-root iframe {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* DO NOT add height, max-height, or overflow to .menu-frame or .menu-embed */
