/* ===========================================
   Bright's Cafe — Bristol | styles.css
   Shared stylesheet for index.html + menu.html
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ============================
   VARIABLES & RESET
============================ */
:root {
  /* ── Brand palette ──────────────────────────────────────────────────
     Cream         #FFF8E7  — main backgrounds
     Soft yellow   #F5E6A3  — alternate section backgrounds
     Gold          #C8952A  — accent: dividers, borders, CTAs, labels
     Espresso      #5C3317  — primary: nav, headings
  ──────────────────────────────────────────────────────────────────── */
  --cream:       #FFF8E7;
  --soft-yellow: #F0D07A;   /* soft yellow section bg */
  --espresso:    #5C3317;   /* espresso brown */
  --espresso-dk: #3D2010;   /* dark espresso — footer, deep bgs */
  --gold:        #C8952A;   /* gold — accent colour throughout */
  --gold-lt:     #D9A83E;   /* lighter gold */
  --lime:        #C8952A;   /* alias → gold */
  --lime-lt:     #D9A83E;   /* alias → gold-lt */
  --yellow:      #C8952A;   /* alias → gold */
  --text-dark:   #3D2010;
  --text-mid:    #6B4A30;
  --white:       #FFFFFF;
  --shadow:      0 4px 20px rgba(92,51,23,0.12);
  --shadow-hover:0 8px 32px rgba(92,51,23,0.22);
  --radius:      12px;
  --t:           all 0.3s ease;
}

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

html { scroll-behavior: smooth; overflow-y: scroll; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--espresso);
  line-height: 1.3;
}

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

/* ============================
   NAV
============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--soft-yellow);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 12px rgba(92,51,23,0.15);
  border-bottom: 2px solid var(--gold);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--espresso);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.nav-logo-img-wrap {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--espresso);
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  transition: var(--t);
  opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--espresso);
  opacity: 1;
}

.nav-links .nav-cta {
  background: var(--espresso);
  color: var(--cream) !important;
  padding: 0.45rem 1.3rem;
  border-radius: 25px;
  font-weight: 700;
  opacity: 1 !important;
}

.nav-links .nav-cta:hover {
  background: var(--espresso-dk);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  background: transparent;
  border: none;
  outline: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: var(--t);
}

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

/* ============================
   HERO
============================ */
.hero {
  position: relative;
  min-height: 91vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 6rem;
  background:
    linear-gradient(155deg, rgba(255,248,231,0.30) 0%, rgba(245,230,163,0.25) 55%, rgba(245,220,100,0.20) 100%),
    url('front page real.jpeg') center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(200,149,42,0.2) 0%, transparent 65%);
  pointer-events: none;
}

/* Logo */
.hero-logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2.2rem;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  filter: drop-shadow(0 4px 24px rgba(92,51,23,0.25));
}

.hero-logo-wrap img.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.logo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: rgba(92,51,23,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(200,149,42,0.3);
  color: var(--espresso);
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  gap: 0.35rem;
  text-align: center;
  padding: 1rem;
  letter-spacing: 0.5px;
  opacity: 0.75;
}

.logo-placeholder .lp-icon { font-size: 2.6rem; display: block; }

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--espresso);
  position: relative;
  z-index: 1;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.hero h1 span { color: var(--espresso); }

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-mid);
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  max-width: 560px;
}

.hero-sub {
  font-size: 0.75rem;
  color: var(--lime);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2.8rem;
  position: relative;
  z-index: 1;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Steam animation */
.steam-wrap {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
}

.steam {
  position: absolute;
  bottom: 0;
  border-radius: 40% 60% 60% 40% / 40%;
  background: rgba(255,255,255,0.55);
  filter: blur(8px);
  animation: steam-rise var(--dur, 3.5s) ease-in infinite;
  animation-delay: var(--delay, 0s);
}

.steam:nth-child(1) { width: 12px; left: 25%; --dur: 3.8s; --delay: 0s; }
.steam:nth-child(2) { width: 10px; left: 50%; --dur: 3.2s; --delay: 0.9s; }
.steam:nth-child(3) { width: 14px; left: 72%; --dur: 4.1s; --delay: 1.7s; }

@keyframes steam-rise {
  0%   { height: 0;    opacity: 0;   transform: translateX(0)    scaleX(1);   }
  15%  { opacity: 0.6; }
  50%  { transform: translateX(-12px) scaleX(1.4); }
  75%  { opacity: 0.2; }
  100% { height: 100px; opacity: 0;  transform: translateX(8px)  scaleX(0.7); bottom: 110px; }
}

/* ============================
   BUTTONS
============================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  border-radius: 30px;
  font-size: 0.93rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.4px;
  transition: var(--t);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--espresso-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}

.btn-outline:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--lime);
  color: var(--espresso-dk);
  box-shadow: var(--shadow);
}

.btn-gold:hover {
  background: var(--lime-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ============================
   SHARED SECTION UTILITIES
============================ */
section { padding: 5.5rem 2rem; }

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

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.section-title { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 1rem; }

.section-divider {
  width: 55px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}

.section-divider.left { margin: 0 0 2.5rem; }

.text-center { text-align: center; }

/* ============================
   WELCOME STRIP
============================ */
.welcome {
  background: var(--espresso);
  padding: 4rem 2rem;
}

.welcome-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.welcome h2 {
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 1rem;
}

.welcome p {
  color: rgba(255,248,231,0.9);
  font-size: 1.08rem;
  line-height: 1.95;
}

.welcome-tags {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.2rem;
}

.tag {
  background: rgba(200,149,42,0.15);
  border: 1px solid rgba(200,149,42,0.5);
  color: var(--yellow);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
}

/* ============================
   ABOUT ANDA
============================ */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image { position: relative; }

/* Real owner photo — matches the placeholder's aspect ratio */
.about-image > img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

/* Drop a photo named owner.jpg in root to replace this placeholder */
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #F5E6A3, #D4A855);
  border-radius: var(--radius);
  border: 2px dashed rgba(200,149,42,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.8rem;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
  line-height: 1.6;
}

.about-photo-placeholder .ph-icon { font-size: 3rem; opacity: 0.45; }

.about-photo-placeholder p { opacity: 0.65; }

.about-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: var(--radius);
  opacity: 0.12;
  z-index: -1;
}

.about-accent-top {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 70px;
  height: 70px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.25;
}

.about-content p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  font-size: 1.03rem;
}

.about-signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.55rem;
  color: var(--gold);
  margin-top: 1.8rem;
  display: block;
}

/* ============================
   MENU PREVIEW CARDS
============================ */
.menu-preview { background: var(--soft-yellow); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.menu-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.8rem 1.8rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--t);
  display: block;
  border: 2px solid transparent;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--lime);
}

.menu-card-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.menu-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }

.menu-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.menu-card-arrow {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--lime);
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================
   GALLERY
============================ */
.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
  margin-top: 2.8rem;
}

/* Spanning items for masonry feel */
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-row: span 2; }

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #F5E6A3, #D4A855);
  border: 1.5px dashed rgba(200,149,42,0.5);
}

/* When client drops real photos in, they replace each placeholder div
   with: <img src="your-photo.jpg" alt="..."> */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.78rem;
  gap: 0.4rem;
  padding: 1.5rem;
  text-align: center;
  opacity: 0.6;
}

.gallery-ph .ph-icon { font-size: 1.7rem; }

/* ============================
   PRIVATE HIRE
============================ */
.private-hire { background: var(--soft-yellow); }

.hire-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}

.hire-content p {
  color: var(--text-mid);
  font-size: 1.03rem;
  margin-bottom: 1rem;
}

.hire-features { list-style: none; margin-top: 1.8rem; }

.hire-features li {
  padding: 0.5rem 0;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(200,149,42,0.25);
}

.hire-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.hire-form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hire-form h3 { font-size: 1.45rem; margin-bottom: 1.6rem; }

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(92,51,23,0.2);
  border-radius: 8px;
  background: var(--cream);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: var(--t);
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,149,42,0.2);
}

textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: var(--t);
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: var(--espresso-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ============================
   FOOTER
============================ */
.footer {
  background: var(--espresso-dk);
  color: var(--cream);
  padding: 4.5rem 2rem 2rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.footer-brand .footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  opacity: 0.65;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  padding: 0.28rem 0;
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.6;
}

.footer-col a { opacity: 0.75; transition: var(--t); }
.footer-col a:hover { opacity: 1; color: var(--gold); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200,149,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--t);
  opacity: 0.8;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,149,42,0.15);
  opacity: 1;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================
   SCROLL FADE-IN ANIMATION
============================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* ============================
   MENU PAGE — HERO
============================ */
.menu-hero {
  background: linear-gradient(155deg, var(--espresso) 0%, var(--espresso-dk) 100%);
  padding: 5.5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,149,42,0.12) 0%, transparent 60%);
}

.menu-hero h1 {
  color: var(--gold);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  position: relative;
  z-index: 1;
}

.menu-hero p {
  color: rgba(255,248,231,0.8);
  font-size: 1.08rem;
  margin-top: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ============================
   MENU PAGE — STICKY CATEGORY NAV
============================ */
.menu-cat-nav {
  background: var(--espresso);
  padding: 0 2rem;
  position: sticky;
  top: 68px;
  z-index: 900;
  border-bottom: 2px solid rgba(200,149,42,0.35);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-cat-nav::-webkit-scrollbar { display: none; }

.menu-cat-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  white-space: nowrap;
}

.cat-nav-link {
  display: inline-block;
  padding: 1rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,248,231,0.7);
  transition: var(--t);
  border-bottom: 3px solid transparent;
  flex-shrink: 0;
}

.cat-nav-link:hover,
.cat-nav-link.active {
  color: var(--lime);
  border-bottom-color: var(--lime);
}

/* ============================
   MENU PAGE — SECTIONS
============================ */
.menu-section {
  padding: 4.5rem 2rem;
}

.menu-section:nth-child(odd)  { background: var(--cream); }
.menu-section:nth-child(even) { background: var(--soft-yellow); }

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

.menu-section-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid rgba(200,149,42,0.3);
}

.menu-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.3rem;
}

.menu-section-subtitle {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-style: italic;
}

/* Subsection label */
.subsection-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin: 2rem 0 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,149,42,0.3);
}

/* Standard list items (coffees, extras) */
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 0.6rem;
}

.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.55);
  border-radius: 8px;
  transition: var(--t);
}

.menu-list-item:hover {
  background: rgba(255,255,255,0.9);
  transform: translateX(4px);
}

.item-name { font-size: 0.93rem; color: var(--text-dark); }
.item-note { font-size: 0.76rem; color: var(--text-mid); opacity: 0.75; }

.item-price {
  font-weight: 700;
  color: var(--espresso);
  font-size: 0.92rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mocktail cards */
.mocktail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.mocktail-card {
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--lime);
  transition: var(--t);
}

.mocktail-card:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mocktail-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--espresso);
  margin-bottom: 0.25rem;
}

.mocktail-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.mocktail-ingredients {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Food / ciabatta / salad cards */
.food-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}

.food-card {
  background: rgba(255,255,255,0.65);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--t);
  border-bottom: 3px solid transparent;
}

.food-card:hover {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.food-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--espresso);
  margin-bottom: 0.3rem;
}

.food-card-desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.food-card-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}

.badge {
  display: inline-block;
  font-size: 0.66rem;
  padding: 0.12rem 0.5rem;
  border-radius: 10px;
  margin-left: 0.5rem;
  vertical-align: middle;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.badge-vegan { background: rgba(60,120,60,0.12); color: #2D6A2D; }
.badge-gf    { background: rgba(200,149,42,0.15); color: #7B4500; }

/* Notes / callouts */
.menu-note {
  font-size: 0.83rem;
  color: var(--text-mid);
  font-style: italic;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(200,149,42,0.08);
  border-radius: 8px;
  border-left: 3px solid var(--lime);
  line-height: 1.7;
}

/* Extras / add-on chips */
.extras-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.75rem;
}

.extra-chip {
  background: rgba(92,51,23,0.07);
  border: 1px solid rgba(92,51,23,0.15);
  color: var(--text-mid);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.83rem;
}

/* Nibbles — simple row */
.nibbles-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.nibble-card {
  background: rgba(255,255,255,0.65);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--t);
}

.nibble-card:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.nibble-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--espresso);
}

.nibble-desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-style: italic;
  margin-top: 0.2rem;
}

.nibble-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ============================
   TREATS SPOTLIGHT (homepage)
============================ */
.treats { background: var(--cream); }

.treats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.treat-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--t);
}

.treat-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.treat-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #F5E6A3, #D4A855);
  border-bottom: 2px dashed rgba(200,149,42,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-mid);
  overflow: hidden;
}

.treat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treat-img .t-icon { font-size: 2.6rem; opacity: 0.6; }
.treat-img .t-label { font-size: 0.72rem; opacity: 0.55; letter-spacing: 0.5px; }

.treat-body { padding: 1.6rem; }
.treat-body h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.treat-body p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; }
.treat-price   { font-weight: 700; color: var(--gold); font-size: 0.88rem; }

/* ============================
   DAVE DAY BANNER
============================ */
.dave-day-banner {
  background: var(--soft-yellow);
  border-bottom: 3px solid var(--gold);
  padding: 0.85rem 2rem;
}

.dave-day-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.dave-day-badge {
  background: var(--gold);
  color: var(--espresso-dk);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.dave-day-inner p {
  color: var(--espresso);
  font-size: 0.87rem;
  line-height: 1.5;
  margin: 0;
}

.dave-day-link {
  color: var(--espresso);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--t);
}

.dave-day-link:hover { opacity: 0.8; }

/* ============================
   LOYALTY APP & GIFT CARDS
============================ */
.perks { background: var(--espresso); padding: 5rem 2rem; }

.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.perk-card {
  background: rgba(255,248,231,0.07);
  border: 1px solid rgba(200,149,42,0.3);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--t);
}

.perk-card:hover { background: rgba(255,248,231,0.11); }
.perk-icon { font-size: 2.4rem; display: block; margin-bottom: 1rem; }

.perk-card h3 {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.perk-card p {
  font-size: 0.93rem;
  color: rgba(255,248,231,0.85);
  line-height: 1.75;
  margin-bottom: 0;
}

.perk-note {
  font-size: 0.8rem;
  color: rgba(255,248,231,0.5);
  font-style: italic;
  margin-top: 0.6rem;
}

.perk-btn { margin-top: 1.5rem; }

@media (max-width: 768px) {
  .perks-grid { grid-template-columns: 1fr; }
}

/* ============================
   AS FEATURED IN
============================ */
.featured-in {
  background: var(--cream);
  padding: 3rem 2rem;
}

.featured-logos {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--soft-yellow);
  border: 1.5px solid rgba(200,149,42,0.4);
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--espresso);
  transition: var(--t);
  text-decoration: none;
}

.featured-badge:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.featured-badge-icon { font-size: 1.1rem; }

/* ============================
   GOOGLE REVIEWS
============================ */
.reviews {
  background: var(--soft-yellow);
  padding: 5.5rem 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
  flex: 1;
}

.review-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.5px;
}

.review-cta { margin-top: 1rem; }

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* FSA food hygiene rating badge */
.fsa-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(200,149,42,0.2);
}

.fsa-badge-wrap a { display: inline-block; line-height: 0; }

.fsa-badge-wrap img {
  max-width: 291px;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Restaurant Guru badge wrapper — sits inline inside .featured-logos */
.rg-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scale the badge down slightly so it matches the HiddenGemsUK badge height */
#circle_bw {
  transform: scale(0.72);
  transform-origin: center center;
  cursor: pointer;
}

/* ============================
   LOYALTY QR FLYER
============================ */
.loyalty-flyer-wrap {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
}

.loyalty-flyer-img {
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

/* ============================
   HIRE TEASER (homepage)
============================ */
.hire-teaser {
  background: var(--espresso);
  padding: 5.5rem 2rem;
  text-align: center;
}

.hire-teaser h2 { color: var(--gold); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }

.hire-teaser p {
  color: rgba(255,248,231,0.85);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

/* ============================
   INNER PAGE HERO (About / Hire)
============================ */
.page-hero {
  background: linear-gradient(155deg, var(--espresso) 0%, var(--espresso-dk) 100%);
  padding: 5.5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,149,42,0.12) 0%, transparent 60%);
}

.page-hero h1 {
  color: var(--gold);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255,248,231,0.8);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ============================
   VALUES GRID (about page)
============================ */
.values { background: var(--soft-yellow); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--t);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.value-icon { font-size: 2.2rem; display: block; margin-bottom: 0.9rem; }
.value-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; }

/* ============================
   ABOUT PAGE GALLERY
============================ */
.about-gallery { background: var(--cream); }

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.about-gal-item {
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  background: linear-gradient(145deg, #F5E6A3, #D4A855);
  border: 1.5px dashed rgba(200,149,42,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.78rem;
  gap: 0.4rem;
  padding: 1.5rem;
  text-align: center;
  opacity: 0.65;
  overflow: hidden;
  transition: var(--t);
}

.about-gal-item:hover { opacity: 1; }
.about-gal-item .ph-icon { font-size: 2rem; }

.about-gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

/* ============================
   MENU PAGE PHOTO SLOTS
============================ */
.menu-photo-slot {
  margin: 2.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #F5E6A3, #D4A855);
  border: 1.5px dashed rgba(200,149,42,0.5);
  aspect-ratio: 16/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.85rem;
  gap: 0.5rem;
  text-align: center;
  opacity: 0.6;
}

.menu-photo-slot .ph-icon { font-size: 2rem; }
.menu-photo-slot img { width: 100%; height: 100%; object-fit: cover; }

/* Hide placeholder styling once real photos are present */
.menu-photo-slot:has(img) { opacity: 1; background: none; border: none; }
.about-gal-item:has(img)  { opacity: 1; background: none; border-color: transparent; }

@media (max-width: 768px) {
  .menu-photo-slot { aspect-ratio: unset; }
  .menu-photo-slot img { height: auto; object-fit: contain; }
}

/* ============================
   HIRE FULL PAGE
============================ */
.inclusions { background: var(--soft-yellow); }

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.3rem;
  margin-top: 2.8rem;
}

.inclusion-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--lime);
  transition: var(--t);
}

.inclusion-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.inclusion-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.inclusion-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.inclusion-card p  { font-size: 0.83rem; color: var(--text-mid); line-height: 1.65; }

.occasions { background: var(--cream); }

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.occasion-item {
  background: var(--soft-yellow);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  font-size: 0.92rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow);
}

.occasion-item::before { content: '✦'; color: var(--gold); font-size: 0.65rem; flex-shrink: 0; }

.hire-form-section { background: var(--soft-yellow); }

.hire-form-wrap {
  background: var(--cream);
  padding: 3rem;
  border-radius: var(--radius);
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.hire-form-wrap h3 { font-size: 1.55rem; margin-bottom: 1.8rem; }

.hire-response {
  text-align: center;
  margin-top: 1.8rem;
  font-size: 0.87rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 960px) {
  .about-grid,
  .hire-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-grid .about-image { max-width: 420px; margin: 0 auto; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(7) { grid-row: span 1; }
}

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

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--soft-yellow);
    border-top: 1px solid var(--gold);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 12px 24px rgba(92,51,23,0.15);
  }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  section { padding: 3.5rem 1.5rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  /* Treats spotlight — single column on mobile */
  .treats-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  /* Values grid — single column on mobile */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* About page — ensure both grids stack, no inline-style override */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .about-image { max-width: 100%; }

  /* Clip any decorative absolute elements that bleed offscreen */
  .about, .about-gallery, [aria-label="The space"] {
    overflow-x: clip;
  }
}

@media (max-width: 500px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ============================
   PRIVACY PAGE
============================ */
.privacy-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--espresso);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gold-lt);
}

.privacy-subheading {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--espresso);
  margin: 1.5rem 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.privacy-block p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.privacy-list {
  color: var(--text-mid);
  line-height: 1.85;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.privacy-list li { margin-bottom: 0.35rem; }

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.privacy-table th {
  background: var(--espresso);
  color: var(--cream);
  text-align: left;
  padding: 0.65rem 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.privacy-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(92,51,23,0.1);
  vertical-align: top;
}

.privacy-table tr:last-child td { border-bottom: none; }
.privacy-table tr:nth-child(even) td { background: rgba(245,230,163,0.2); }

/* ============================
   COOKIE BANNER
============================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--soft-yellow);
  color: var(--espresso);
  padding: 1rem 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  border-top: 2px solid var(--gold);
}

.cookie-banner-text {
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
  margin: 0;
  opacity: 0.92;
}

.cookie-banner-btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-btn-accept {
  background: var(--gold);
  color: var(--espresso);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--espresso);
  border: 1px solid rgba(92,51,23,0.35);
}

@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-btns { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
