/* ═══════════════════════════════════════════════════════════
   BOHAN'S CAFE — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #FAFAF5;
  color: #1E1410;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CSS Variables (overridden by Customizer inline styles) ─ */
:root {
  --forest:       #2C4A38;
  --forest-dk:    #1C3326;
  --forest-md:    #3D6652;
  --amber:        #B8702E;
  --amber-lt:     #D48A45;
  --cream:        #FAFAF5;
  --parchment:    #EDE4D2;
  --bark:         #1E1410;
  --mist:         #8B998C;
  --sand:         #C9BAA0;
  --gold:         #F4B400;
}

/* ── Google Fonts fallback ───────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
}
h1 { font-size: clamp(3.5rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes arrowBob { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(9px); } }

.bohans-reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.bohans-reveal.is-visible { opacity:1; transform:none; }
.bohans-reveal.delay-1 { transition-delay:.1s; }
.bohans-reveal.delay-2 { transition-delay:.2s; }
.bohans-reveal.delay-3 { transition-delay:.3s; }

/* ══════════════════════ NAV ═════════════════════════════ */
#bohans-nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  background: rgba(28,51,38,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 44px;
  transition: height .3s, box-shadow .3s;
}
#bohans-nav.is-scrolled { height:58px; box-shadow:0 2px 20px rgba(0,0,0,.25); }

/* ── Nav rustic wordmark — Rye font ─────────────────────── */
.bohans-nav__wordmark {
  font-family: 'Rye', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,.92);
  letter-spacing: .04em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s;
}
.bohans-nav__wordmark:hover { color: var(--parchment); }
#bohans-nav.is-scrolled .bohans-nav__wordmark { font-size: .88rem; }

.bohans-nav__links { display:flex; gap:30px; list-style:none; align-items:center; }
.bohans-nav__links a {
  color:rgba(255,255,255,.78);
  font-size:.77rem; letter-spacing:.13em; text-transform:uppercase; font-weight:500;
  transition:color .2s;
}
.bohans-nav__links a:hover { color:#fff; }
.bohans-nav__links .btn-order {
  background:var(--amber); color:#fff !important;
  padding:8px 22px; border-radius:2px;
  font-weight:600 !important;
  transition:background .2s !important;
}
.bohans-nav__links .btn-order:hover { background:var(--amber-lt) !important; }

/* Mobile hamburger */
.bohans-nav__hamburger {
  display:none; flex-direction:column; gap:5px; cursor:pointer;
  background:none; border:none; padding:4px;
}
.bohans-nav__hamburger span {
  display:block; width:24px; height:2px; background:rgba(255,255,255,.8);
  transition:all .3s;
}
.bohans-nav__hamburger.is-open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.bohans-nav__hamburger.is-open span:nth-child(2) { opacity:0; }
.bohans-nav__hamburger.is-open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

.bohans-nav__mobile {
  display:none; position:fixed; top:58px; left:0; right:0;
  background:rgba(28,51,38,.98); z-index:199;
  padding:20px 24px 30px;
}
.bohans-nav__mobile.is-open { display:block; }
.bohans-nav__mobile ul { list-style:none; }
.bohans-nav__mobile li { border-bottom:1px solid rgba(255,255,255,.08); }
.bohans-nav__mobile a {
  display:block; padding:14px 0;
  color:rgba(255,255,255,.8); font-size:.85rem; letter-spacing:.1em; text-transform:uppercase;
}
.bohans-nav__mobile .btn-order {
  display:inline-block; margin-top:16px;
  background:var(--amber); color:#fff !important;
  padding:12px 28px; border-radius:2px; font-weight:600;
}

/* ══════════════════════ HERO ════════════════════════════ */
.bohans-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* clips bg parallax so it can't bleed into story section */
  padding-top: 72px;   /* clear the fixed nav */
  padding-bottom: 60px;
}
.bohans-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  background-repeat: no-repeat;
  will-change: transform;
}
.bohans-hero__overlay {
  position:absolute; inset:0;
  background:linear-gradient(155deg, rgba(28,51,38,.84) 0%, rgba(20,36,28,.72) 55%, rgba(16,22,14,.55) 100%);
}
.bohans-hero__content {
  position:relative; z-index:2;
  text-align:center; color:#fff; max-width:820px; padding:0 24px;
  animation:fadeUp 1.2s ease .15s both;
}
.bohans-hero__eyebrow {
  font-family:'DM Sans',sans-serif; font-size:.72rem; letter-spacing:.26em;
  text-transform:uppercase; color:var(--parchment); opacity:.9;
  margin-bottom:22px;
}
.bohans-hero__title {
  font-family:'Cormorant Garamond',Georgia,serif; font-weight:300;
  font-size:clamp(3.8rem,9vw,7.2rem); line-height:1.04;
  text-shadow:0 2px 24px rgba(0,0,0,.28); margin-bottom:26px;
}
.bohans-hero__title em { font-style:italic; color:var(--parchment); }
.bohans-hero__sub {
  font-size:.98rem; letter-spacing:.05em; font-weight:300;
  color:rgba(255,255,255,.78); margin-bottom:48px;
}
.bohans-hero__cta {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--amber); color:#fff; border-radius:2px;
  padding:15px 38px; font-size:.84rem; letter-spacing:.12em;
  text-transform:uppercase; font-weight:600;
  transition:background .2s, transform .2s;
}
.bohans-hero__cta:hover { background:var(--amber-lt); transform:translateY(-2px); }
.bohans-hero__scroll-arrow {
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  color:rgba(255,255,255,.55); font-size:1.35rem;
  animation:arrowBob 2.2s ease-in-out infinite;
}

/* ══════════════════════ HERO LOGO ════════════════════════ */
/* Single authoritative rule — 300px, white, no shadow, no border */
.bohans-hero__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.bohans-hero__logo {
  width: 300px;
  max-width: 80vw;
  height: auto;
  filter: brightness(0) invert(1);
}

/* ══════════════════════ HOURS BAND ══════════════════════ */
.bohans-hours-band {
  background:var(--forest); color:#fff;
  display:flex; align-items:center; justify-content:center;
  gap:44px; flex-wrap:wrap; padding:16px 40px;
}
.bohans-hours-band__item {
  display:flex; align-items:center; gap:9px;
  font-size:.78rem; letter-spacing:.09em; text-transform:uppercase;
}
.bohans-hours-band__icon { color:var(--amber-lt); }
.bohans-hours-band__divider { width:1px; height:18px; background:rgba(255,255,255,.18); }

/* ══════════════════════ SHARED LAYOUT ══════════════════ */
.bohans-section { padding:96px 44px; }
.bohans-container { max-width:1180px; margin:0 auto; }
.bohans-eyebrow {
  font-family:'DM Sans',sans-serif; font-size:.7rem; letter-spacing:.22em;
  text-transform:uppercase; color:var(--amber); margin-bottom:14px;
  display:flex; align-items:center; gap:12px;
}
.bohans-eyebrow::before { content:''; display:block; width:30px; height:1px; background:var(--amber); }
.bohans-eyebrow--center { justify-content:center; padding-left:42px; }

.btn-dark {
  display:inline-block; background:var(--forest); color:#fff;
  padding:13px 38px; border-radius:2px; font-size:.82rem;
  letter-spacing:.11em; text-transform:uppercase; font-weight:500;
  transition:background .2s, transform .2s;
}
.btn-dark:hover { background:var(--forest-md); transform:translateY(-2px); }

.btn-outline {
  display:inline-block; border:1px solid var(--forest); color:var(--forest);
  padding:13px 38px; border-radius:2px; font-size:.82rem;
  letter-spacing:.11em; text-transform:uppercase; font-weight:500;
  transition:all .2s;
}
.btn-outline:hover { background:var(--forest); color:#fff; }

/* ══════════════════════ STORY ═══════════════════════════ */
.bohans-story { background:var(--cream); }
.bohans-story__grid {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.bohans-story__img-wrap { position:relative; }
.bohans-story__img-wrap::before {
  content:''; position:absolute; inset:-13px;
  border:1px solid var(--sand); border-radius:2px; z-index:0;
}
.bohans-story__img-wrap img {
  position:relative; z-index:1;
  width:100%; height:500px; object-fit:cover; border-radius:2px;
}
.bohans-story__badge {
  position:absolute; bottom:-18px; right:-18px; z-index:2;
  background:var(--forest); color:#fff;
  padding:20px 26px; text-align:center;
  font-family:'Cormorant Garamond',Georgia,serif; font-size:2.7rem; font-weight:300; line-height:1;
}
.bohans-story__badge small {
  display:block; font-family:'DM Sans',sans-serif;
  font-size:.63rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--sand); margin-top:5px;
}
.bohans-story__text h2 { color:var(--bark); font-weight:300; margin-bottom:22px; }
.bohans-story__text h2 em { font-style:italic; color:var(--forest); }
.bohans-story__text p {
  color:#4A3D35; font-size:1rem; font-weight:300;
  line-height:1.8; margin-bottom:18px;
}
.bohans-story__link {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--forest); font-size:.8rem; letter-spacing:.12em;
  text-transform:uppercase; font-weight:500;
  border-bottom:1px solid var(--forest); padding-bottom:2px;
  transition:gap .2s;
}
.bohans-story__link:hover { gap:14px; }

/* ══════════════════════ GALLERY ═════════════════════════ */
.bohans-gallery { background:var(--bark); padding:0; }
.bohans-gallery__intro { padding:60px 44px 40px; text-align:center; color:#fff; }
.bohans-gallery__intro h2 { font-weight:300; color:var(--parchment); margin-bottom:6px; }
.bohans-gallery__intro p { color:rgba(255,255,255,.55); font-size:.9rem; font-weight:300; }
.bohans-gallery__grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:290px 290px;
  gap:4px;
}
.bohans-gallery__item { position:relative; overflow:hidden; }
.bohans-gallery__item:first-child { grid-column:span 2; grid-row:span 2; }
.bohans-gallery__item img { width:100%; height:100%; object-fit:cover; transition:transform .55s ease; }
.bohans-gallery__item:hover img { transform:scale(1.06); }
.bohans-gallery__item::after {
  content:''; position:absolute; inset:0;
  background:rgba(28,51,38,0); transition:background .3s; pointer-events:none;
}
.bohans-gallery__item:hover::after { background:rgba(28,51,38,.28); }
.bohans-gallery__cta { padding:36px 44px 60px; text-align:center; }
.bohans-gallery__cta a {
  display:inline-block; border:1px solid rgba(255,255,255,.25); color:rgba(255,255,255,.8);
  padding:12px 34px; border-radius:2px; font-size:.78rem; letter-spacing:.14em;
  text-transform:uppercase; transition:all .2s;
}
.bohans-gallery__cta a:hover { border-color:#fff; color:#fff; }

/* ══════════════════════ MENU ════════════════════════════ */
.bohans-menu { background:var(--parchment); }
.bohans-menu__header { text-align:center; margin-bottom:54px; }
.bohans-menu__header h2 { color:var(--bark); font-weight:300; font-size:clamp(2.2rem,4vw,3.2rem); }

.bohans-tabs {
  display:flex; justify-content:center; gap:0;
  border-bottom:1px solid var(--sand); margin-bottom:56px;
}
.bohans-tabs__btn {
  background:none; border:none; border-bottom:2px solid transparent;
  padding:13px 42px; margin-bottom:-1px;
  font-family:'DM Sans',sans-serif; font-size:.79rem; letter-spacing:.13em;
  text-transform:uppercase; color:var(--mist); cursor:pointer; transition:all .2s;
}
.bohans-tabs__btn.is-active,
.bohans-tabs__btn:hover { color:var(--forest); border-bottom-color:var(--forest); }
.bohans-tabs__pane { display:none; }
.bohans-tabs__pane.is-active { display:block; }

.bohans-menu__cols {
  max-width:880px; margin:0 auto;
}
.bohans-menu__category {
  padding:22px 20px 6px;
  font-family:'DM Sans',sans-serif; font-size:.68rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--forest); font-weight:600;
}
.bohans-menu__row {
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:12px; padding:16px 20px;
  border-bottom:1px solid var(--sand);
  transition:background .2s;
}
.bohans-menu__row:hover { background:rgba(44,74,56,.04); }
.bohans-menu__name {
  font-family:'Cormorant Garamond',Georgia,serif; font-size:1.1rem; color:var(--bark);
}
.bohans-menu__note { font-size:.77rem; color:var(--mist); margin-top:3px; }
.bohans-menu__price { font-size:.83rem; color:var(--amber); font-weight:500; white-space:nowrap; flex-shrink:0; }
.bohans-menu__footer { text-align:center; margin-top:50px; }

/* ══════════════════════ REVIEWS ═════════════════════════ */
.bohans-reviews { background:var(--cream); }
.bohans-reviews__header { text-align:center; margin-bottom:56px; }
.bohans-reviews__header h2 { color:var(--bark); font-weight:300; margin-bottom:16px; }
.bohans-google-badge {
  display:inline-flex; align-items:center; gap:10px;
  background:#fff; border:1px solid #E0DDD7;
  padding:10px 20px; border-radius:40px;
}
.bohans-google-badge__dot {
  width:22px; height:22px; border-radius:50%;
  background:linear-gradient(135deg,#4285F4 0%,#34A853 50%,#EA4335 100%);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:700; font-size:.72rem;
}
.bohans-stars { color:var(--gold); letter-spacing:2px; }
.bohans-google-badge span { font-size:.84rem; color:var(--bark); }

.bohans-reviews__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-bottom:24px; }
  background:#fff; border:1px solid #ECEAE4;
  padding:30px 28px; border-radius:4px; position:relative;
  transition:transform .25s, box-shadow .25s;
}
.bohans-review-card:hover { transform:translateY(-5px); box-shadow:0 14px 44px rgba(0,0,0,.08); }
.bohans-review-card__quote {
  font-family:'Cormorant Garamond',Georgia,serif; font-size:4.5rem;
  color:var(--forest); opacity:.15; line-height:1;
  position:absolute; top:16px; left:24px;
}
.bohans-review-card__stars { color:var(--gold); font-size:.88rem; letter-spacing:2px; margin-bottom:14px; padding-top:4px; }
.bohans-review-card__text {
  font-family:'Cormorant Garamond',Georgia,serif; font-size:1.18rem;
  font-style:italic; color:#4A3D35; line-height:1.72; margin-bottom:22px;
}
.bohans-review-card__author { display:flex; align-items:center; gap:12px; }
.bohans-review-card__avatar {
  width:36px; height:36px; border-radius:50%; background:var(--forest);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:600; font-size:.82rem; flex-shrink:0;
}
.bohans-review-card__name { font-size:.84rem; font-weight:600; color:var(--bark); font-family:'DM Sans',sans-serif; }
.bohans-review-card__date { font-size:.73rem; color:var(--mist); font-family:'DM Sans',sans-serif; }
/* Google Reviews widget embed area */
.bohans-reviews__widget { margin-bottom:24px; }
.bohans-reviews__note { text-align:center; font-size:.77rem; color:var(--mist); font-style:italic; }
.bohans-reviews__note a { color:var(--forest); text-decoration:underline; }

/* ══════════════════════ VISIT ═══════════════════════════ */
.bohans-visit { background:var(--forest); color:#fff; }
.bohans-visit__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:56px; }
.bohans-visit__col h3 { color:var(--parchment); font-weight:300; margin-bottom:22px; padding-bottom:14px; border-bottom:1px solid rgba(255,255,255,.14); }
.bohans-visit__col p,
.bohans-visit__col a { color:rgba(255,255,255,.72); font-size:.93rem; line-height:1.9; font-weight:300; }
.bohans-visit__col a:hover { color:#fff; }
.bohans-visit__col strong { color:rgba(255,255,255,.9); font-weight:500; }
.bohans-hours-row {
  display:flex; justify-content:space-between;
  padding:9px 0; border-bottom:1px solid rgba(255,255,255,.07); font-size:.9rem;
}
.bohans-hours-row .day { color:rgba(255,255,255,.55); }
.bohans-hours-row .time { color:#fff; font-weight:500; }
.bohans-hours-row.is-closed .time { color:rgba(255,255,255,.3); }
.bohans-directions-link {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--amber-lt) !important; margin-top:18px;
  font-size:.8rem !important; letter-spacing:.1em; text-transform:uppercase;
  font-weight:500 !important; transition:gap .2s;
}
.bohans-directions-link:hover { gap:13px; }

/* ══════════════════════ EVENTS ══════════════════════════ */
.bohans-events { background:var(--parchment); text-align:center; }
.bohans-events__inner { max-width:680px; margin:0 auto; }
.bohans-events__inner h2 { color:var(--bark); font-weight:300; margin-bottom:18px; }
.bohans-events__inner p { color:#4A3D35; font-size:.98rem; line-height:1.75; font-weight:300; margin-bottom:32px; }

/* ══════════════════════ HIRING ══════════════════════════ */
.bohans-hiring { background:var(--amber); text-align:center; padding:56px 44px; }
.bohans-hiring h2 { color:#fff; font-size:2.6rem; font-weight:300; margin-bottom:10px;
  font-family:'Cormorant Garamond',Georgia,serif; }
.bohans-hiring p { color:rgba(255,255,255,.88); font-size:.97rem; font-weight:300; margin-bottom:28px; }
.btn-white {
  display:inline-block; background:#fff; color:var(--amber);
  padding:13px 38px; border-radius:2px; font-size:.82rem; letter-spacing:.11em;
  text-transform:uppercase; font-weight:600; transition:all .2s;
}
.btn-white:hover { background:var(--bark); color:#fff; }

/* ══════════════════════ FOOTER ══════════════════════════ */
.bohans-footer { background:var(--bark); color:rgba(255,255,255,.5); padding:50px 44px 28px; }
.bohans-footer__inner { max-width:1180px; margin:0 auto; }
.bohans-footer__top {
  display:flex; justify-content:space-between; align-items:center;
  padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.09);
  margin-bottom:26px; flex-wrap:wrap; gap:20px;
}
.bohans-footer__wordmark {
  display: flex; flex-direction: column; line-height: 1;
  text-decoration: none;
}
.bohans-footer__wordmark-main {
  font-family: 'Rye', 'Palatino Linotype', Georgia, serif;
  font-size: 1.3rem; color: rgba(255,255,255,.75); letter-spacing: .06em;
}
.bohans-footer__wordmark-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-top: 3px;
}
.bohans-footer__nav { display:flex; gap:28px; list-style:none; flex-wrap:wrap; }
.bohans-footer__nav a {
  font-size:.75rem; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,.42); transition:color .2s;
}
.bohans-footer__nav a:hover { color:#fff; }
.bohans-footer__social { display:flex; gap:14px; }
.bohans-footer__soc-btn {
  width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem; color:rgba(255,255,255,.42); transition:all .2s;
}
.bohans-footer__soc-btn:hover { border-color:#fff; color:#fff; }
.bohans-footer__bottom { text-align:center; font-size:.73rem; letter-spacing:.05em; }
.bohans-footer__bottom a { color:rgba(255,255,255,.3); }

/* ══════════════════════ WORDPRESS ADMIN BAR ════════════ */
body.admin-bar #bohans-nav { top:32px; }
body.admin-bar .bohans-hero { padding-top:calc(72px + 32px); }
@media screen and (max-width:782px) {
  body.admin-bar #bohans-nav { top:46px; }
  body.admin-bar .bohans-hero { padding-top:calc(72px + 46px); }
}

/* hide hamburger on very small screens if needed */
@media (max-width:640px) { .bohans-nav__hamburger { display:flex; } }


@media (max-width:960px) {
  #bohans-nav { padding:0 20px; }
  .bohans-nav__links { display:none; }
  .bohans-nav__hamburger { display:flex; }

  .bohans-section { padding:72px 24px; }

  .bohans-story__grid { grid-template-columns:1fr; gap:40px; }
  .bohans-story__img-wrap img { height:380px; }

  .bohans-gallery__grid {
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:repeat(3,210px);
  }
  .bohans-gallery__item:first-child { grid-column:span 2; grid-row:span 1; }

  .bohans-menu__cols { grid-template-columns:1fr; }

  .bohans-reviews__grid { grid-template-columns:repeat(2,1fr); }

  .bohans-visit__grid { grid-template-columns:1fr; gap:40px; }

  .bohans-footer__top { flex-direction:column; text-align:center; }
  .bohans-footer__nav { justify-content:center; }

  .bohans-hours-band { gap:20px; padding:12px 20px; }
  .bohans-hours-band__divider { display:none; }
}
@media (max-width:520px) {
  .bohans-tabs__btn { padding:12px 20px; font-size:.7rem; }
  .bohans-reviews__grid { grid-template-columns:1fr; }
}
