@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800;900&display=swap');

/* ===== Design Tokens ===== */
:root {
  --honey-50: #FFF9E6;
  --honey-100: #FFF0B3;
  --honey-200: #FFE680;
  --honey-300: #FFDB4D;
  --honey-400: #FFD11A;
  --honey-500: #F5A623;
  --honey-600: #D4900E;
  --honey-700: #B37A00;
  --honey-800: #8C6000;
  --honey-900: #664600;
  --bee-black: #1A1A1A;
  --bee-dark: #2D2D2D;
  --bee-gold: #F5A623;
  --bee-cream: #FFF9E6;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: #1f2937; background: #fff; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== Utilities ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== Honeycomb Pattern ===== */
.honeycomb-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66Z' fill='none' stroke='%23F5A623' stroke-width='0.5' opacity='0.1'/%3E%3Cpath d='M28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23F5A623' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

/* ===== Navbar ===== */
.navbar {
  background: var(--bee-black);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.navbar-brand { display: flex; align-items: center; gap: 0.5rem; }
.navbar-brand img { height: 56px; object-fit: contain; }
.navbar-links { display: flex; align-items: center; gap: 0.25rem; }
.navbar-links a {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  color: #d1d5db;
  transition: color 0.2s, background 0.2s;
}
.navbar-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.navbar-links a.active { color: var(--honey-500); background: rgba(255,255,255,0.1); }
.hamburger {
  display: none; background: none; border: none; color: #fff; padding: 0.5rem; cursor: pointer;
}
.hamburger svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a {
  display: block; padding: 0.75rem 1rem; font-weight: 600; color: #d1d5db; transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu a.active { color: var(--honey-500); background: rgba(255,255,255,0.1); }
.mobile-menu.open { display: block; }

@media (max-width: 767px) {
  .navbar-links { display: none; }
  .hamburger { display: block; }
  .navbar-brand img { height: 44px; }
}

/* ===== Footer ===== */
.footer { background: var(--bee-dark); color: #d1d5db; }
.footer .container { padding-top: 3rem; padding-bottom: 3rem; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer h3 { font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 1.125rem; margin-bottom: 1rem; }
.footer a:hover { color: var(--honey-500); transition: color 0.2s; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem; padding-top: 2rem; text-align: center; font-size: 0.875rem; color: #6b7280;
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Hero Section ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bee-black); overflow: hidden;
}
.hero-slideshow {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slideshow img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-slideshow img.active { opacity: 0.4; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.7), rgba(26,26,26,0.5), rgba(26,26,26,0.8));
  z-index: 1;
}
.hero-honeycomb { position: absolute; inset: 0; opacity: 0.2; z-index: 2; }
.hero-content {
  position: relative; z-index: 10; text-align: center; padding: 0 1rem; max-width: 56rem; margin: 0 auto;
}
.hero-logo {
  max-width: 28rem; width: 100%; margin: 0 auto 2rem; border-radius: 0.75rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
@media (min-width: 768px) { .hero-logo { max-width: 42rem; } }
.hero-tagline { font-size: 1.25rem; color: #e5e7eb; margin-bottom: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .hero-tagline { font-size: 1.5rem; } }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10;
  animation: bounce 1s infinite;
}
.hero-scroll svg { width: 24px; height: 24px; color: var(--honey-500); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block; font-family: var(--font-heading); font-weight: 700;
  padding: 1rem 2rem; border-radius: 0.5rem; font-size: 1.125rem;
  transition: all 0.2s; cursor: pointer; text-align: center; border: none;
}
.btn-primary { background: var(--honey-500); color: var(--bee-black); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.btn-primary:hover { background: var(--honey-600); }
.btn-outline {
  background: transparent; color: var(--honey-500);
  border: 2px solid var(--honey-500);
}
.btn-outline:hover { background: var(--honey-500); color: var(--bee-black); }
.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
.btn-full { width: 100%; }

/* ===== Section Headers ===== */
.section-header {
  background: var(--bee-black); padding: 4rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.section-header.has-hero { padding: 6rem 0; }
.section-header-bg {
  position: absolute; inset: 0; z-index: 0;
}
.section-header-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}
.section-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(26,26,26,0.5), rgba(26,26,26,0.7));
}
.section-header h1 {
  font-size: 2.25rem; font-weight: 900; color: #fff; position: relative; z-index: 2;
}
.section-header h1 span { color: var(--honey-500); }
.section-header p { color: #d1d5db; margin-top: 0.75rem; font-size: 1.125rem; position: relative; z-index: 2; }
@media (min-width: 768px) {
  .section-header h1 { font-size: 3rem; }
  .section-header.has-hero { padding: 8rem 0; }
}

/* ===== Page Content ===== */
.page-content { padding: 4rem 0; }

/* ===== Menu Hero (combined header + hexagons) ===== */
.menu-hero {
  background: var(--bee-black); position: relative; overflow: hidden;
  padding: 4rem 1rem 4rem; text-align: center;
}
.menu-hero .section-header-bg,
.menu-hero .section-header-overlay { position: absolute; inset: 0; }
.menu-hero .section-header-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.menu-hero .section-header-overlay {
  background: linear-gradient(to bottom, rgba(26,26,26,0.4), rgba(26,26,26,0.6), rgba(26,26,26,0.8));
  z-index: 1;
}
.menu-hero-content { position: relative; z-index: 2; margin-bottom: 3rem; }
.menu-hero-content h1 { font-size: 2.25rem; font-weight: 900; color: #fff; }
.menu-hero-content h1 span { color: var(--honey-500); }
.menu-hero-content p { color: #d1d5db; margin-top: 0.75rem; font-size: 1.125rem; }
@media (min-width: 768px) {
  .menu-hero { padding: 6rem 1rem 4rem; }
  .menu-hero-content h1 { font-size: 3rem; }
}
.menu-hero.compact { padding-top: 2rem; padding-bottom: 2rem; }
.menu-hero.compact .menu-hero-content { display: none; }

/* ===== Hexagon Menu Selector ===== */
.hex-selector {
  /* styles now on .menu-hero above */
}
.hex-grid {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  max-width: 800px; margin: 0 auto; position: relative; z-index: 1;
}
.hex-btn {
  background: none; border: none; cursor: pointer; padding: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}
@media (hover: hover) {
  .hex-btn:hover { transform: scale(1.1) translateY(-4px); filter: drop-shadow(0 8px 16px rgba(245,166,35,0.4)); }
}
.hex-btn:active { transform: scale(1.05); }
.hex-btn.active .hex-shape { background: var(--honey-500); }

.hex-shape {
  width: 140px; height: 160px;
  background: var(--bee-dark);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
  position: relative;
}
.hex-shape::after {
  content: ''; position: absolute; inset: 3px;
  background: var(--bee-black);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: background 0.3s ease;
}
.hex-btn.active .hex-shape::after { background: var(--bee-dark); }
@media (hover: hover) {
  .hex-btn:hover .hex-shape { background: var(--honey-500); }
  .hex-btn:hover .hex-shape::after { background: var(--bee-dark); }
}

.hex-inner {
  position: relative; z-index: 1; text-align: center;
  display: flex; align-items: center; justify-content: center;
  padding: 0 0.75rem; transition: color 0.3s ease;
}
.hex-label {
  font-family: var(--font-heading); font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2;
  color: #fff;
}
.hex-label br + * { color: var(--honey-500); }
@media (hover: hover) {
  .hex-btn:hover .hex-label { color: var(--honey-500); }
}
.hex-btn.active .hex-label { color: var(--honey-500); }

@media (max-width: 500px) {
  .hex-grid { gap: 0.75rem; }
  .hex-shape { width: 110px; height: 126px; }
  .hex-label { font-size: 0.75rem; }
}

/* Hex selector compact mode (after menu selected) */
.hex-selector.compact { padding-bottom: 2rem; }
.hex-selector.compact .hex-shape { width: 90px; height: 104px; }
.hex-selector.compact .hex-label { font-size: 0.65rem; }
.hex-selector.compact .hex-grid { gap: 0.75rem; }
@media (max-width: 500px) {
  .hex-selector.compact .hex-shape { width: 72px; height: 83px; }
  .hex-selector.compact .hex-label { font-size: 0.5rem; }
}

/* ===== Menu (compact list style) ===== */
.menu-nav {
  position: sticky; top: 64px; z-index: 40; background: #fff;
  border-bottom: 1px solid #e5e7eb; padding: 0.75rem 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.menu-nav-inner { display: flex; gap: 0.25rem; min-width: max-content; }
.menu-nav a {
  padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  color: #6b7280; white-space: nowrap; transition: all 0.2s;
}
.menu-nav a:hover { color: var(--bee-black); background: var(--honey-50); }
.menu-nav a.active { background: var(--honey-500); color: var(--bee-black); }

.menu-category { scroll-margin-top: 8rem; padding: 2.5rem 0; }
.menu-category h2 {
  font-size: 1.875rem; color: var(--bee-black); margin-bottom: 2rem; padding-bottom: 0.75rem;
  border-bottom: 4px solid var(--honey-500); display: inline-block;
}
.menu-items-list { max-width: 640px; }
@media (min-width: 768px) {
  .menu-items-columns { column-count: 2; column-gap: 3rem; }
  .menu-items-list { max-width: none; break-inside: avoid; }
}

.menu-category-note {
  font-size: 0.875rem; color: #6b7280; font-style: italic;
  margin-bottom: 1.5rem; line-height: 1.5;
}

.menu-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem;
  padding: 0.375rem 0; border-bottom: 1px dotted #e5e7eb;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-family: var(--font-heading); font-weight: 700; color: var(--bee-black); font-size: 0.9375rem; }
.menu-item-desc { font-size: 0.8125rem; color: #6b7280; margin-top: 0.125rem; padding-bottom: 0.375rem; }
.menu-item-price { font-family: var(--font-heading); font-weight: 700; color: var(--honey-600); white-space: nowrap; font-size: 0.9375rem; }

/* Menu section transition */
.menu-section-enter { animation: fadeSlideUp 0.4s ease-out; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Cards ===== */
.card {
  background: #fff; border-radius: 0.75rem; box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  overflow: hidden; border-left: 4px solid var(--honey-500);
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.card-body { padding: 1.5rem; }
.card-img { width: 100%; height: 12rem; object-fit: cover; }

/* ===== Specials ===== */
.specials-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .specials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .specials-grid { grid-template-columns: repeat(3, 1fr); } }

.special-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.5rem; }
.special-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--bee-black); }
.special-price {
  background: var(--honey-500); color: var(--bee-black); font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.875rem; white-space: nowrap;
}
.special-desc { color: #4b5563; margin-bottom: 1rem; }
.special-timer { font-size: 0.875rem; color: #6b7280; }
.special-timer span { font-weight: 600; color: var(--honey-600); }

/* ===== Events ===== */
.event-types { display: grid; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .event-types { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .event-types { grid-template-columns: repeat(4, 1fr); } }

.event-card {
  background: #fff; border-radius: 0.75rem; box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  padding: 2rem; border-left: 4px solid var(--honey-500); text-align: center;
}
.event-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.event-card-icon-img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 1rem; }
.event-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--bee-black); margin-bottom: 0.5rem; }
.event-card p { color: #4b5563; }

.events-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .events-grid { grid-template-columns: 1fr 1fr; } }

.check-list { display: flex; flex-direction: column; gap: 1rem; font-size: 1.125rem; color: #4b5563; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-list .check { color: var(--honey-500); font-weight: 700; font-size: 1.25rem; margin-top: 0.125rem; }

.call-box {
  background: var(--bee-cream); border-radius: 0.75rem; padding: 1.5rem; margin-top: 2rem;
}
.call-box h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--bee-black); margin-bottom: 0.5rem; }
.call-box p { color: #4b5563; margin-bottom: 0.5rem; }
.call-box a {
  font-size: 1.5rem; font-family: var(--font-heading); font-weight: 700;
  color: var(--honey-600); transition: color 0.2s;
}
.call-box a:hover { color: var(--honey-700); }

/* ===== Forms ===== */
.form-card {
  background: #fff; border-radius: 0.75rem; box-shadow: 0 4px 6px rgba(0,0,0,0.07); padding: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 0.25rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid #d1d5db; border-radius: 0.5rem;
  padding: 0.625rem 1rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--honey-500); box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
}
.form-group textarea { resize: none; }

.form-success {
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 0.75rem;
  padding: 2rem; text-align: center;
}
.form-success h3 { color: #166534; font-size: 1.25rem; margin-bottom: 0.5rem; }
.form-success p { color: #15803d; }
.form-error {
  background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c;
  padding: 0.75rem 1rem; border-radius: 0.5rem; text-align: center; margin-bottom: 1rem;
}

/* ===== About ===== */
.about-grid { display: grid; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-logo-box {
  background: var(--bee-cream); border-radius: 1rem; padding: 2rem; text-align: center;
  display: flex; align-items: center; justify-content: center;
}
.about-logo-box img { width: 16rem; margin: 0 auto 1rem; border-radius: 0.5rem; }
.about-logo-box p { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: var(--bee-black); }

.info-cards { display: grid; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .info-cards { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  background: #fff; border-radius: 0.75rem; box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  padding: 2rem; border-left: 4px solid var(--honey-500);
}
.info-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--bee-black); margin-bottom: 1rem; }
.info-card p, .info-card a { color: #4b5563; }
.info-card a:hover { color: var(--honey-500); }

/* ===== Home Sections ===== */
.home-section-header { text-align: center; margin-bottom: 2.5rem; }
.home-section-header h2 {
  font-size: 2rem; color: var(--bee-black); margin-bottom: 0.5rem;
}
.home-section-header h2 span { color: var(--honey-500); }
.home-section-header p { color: #6b7280; font-size: 1.125rem; }

/* About preview */
.about-preview { padding: 5rem 0; background: #fff; }
.home-about { text-align: center; max-width: 48rem; margin: 0 auto; }
.home-about-text h2 {
  font-size: 2rem; color: var(--bee-black); margin-bottom: 1.5rem;
}
.home-about-text h2 span { color: var(--honey-500); }
.home-about-text p {
  font-size: 1.125rem; color: #4b5563; margin-bottom: 1.25rem; line-height: 1.7;
}
.home-about-text .btn { margin-top: 0.5rem; }

/* Featured specials */
.featured-specials { background: var(--bee-cream); padding: 5rem 0; }
.featured-specials-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .featured-specials-grid { grid-template-columns: repeat(3, 1fr); } }

.advertiser-bar { background: var(--bee-dark); padding: 2rem 0; }
.advertiser-bar h3 {
  text-align: center; color: #9ca3af; font-size: 0.875rem; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 1rem;
}
.advertiser-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem;
}
.advertiser-logos a { opacity: 0.7; transition: opacity 0.2s; }
.advertiser-logos a:hover { opacity: 1; }
.advertiser-logos img { height: 3rem; object-fit: contain; }

.featured-ads { padding: 5rem 0; }
.featured-ads-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .featured-ads-grid { grid-template-columns: 1fr 1fr; } }

.banner-ad {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2rem; background: #fff; border-radius: 0.75rem; box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}
.banner-ad img { height: 5rem; object-fit: contain; margin-bottom: 1rem; }
@media (min-width: 768px) {
  .banner-ad { flex-direction: row; text-align: left; }
  .banner-ad img { height: 7rem; margin-bottom: 0; margin-right: 2rem; }
}

/* ===== Dirty Soda Note / Category Notes ===== */
.category-note {
  font-size: 0.875rem; color: #6b7280; font-style: italic; margin-bottom: 1rem;
}

/* ===== Kids Menu ===== */
.kids-note { font-size: 0.875rem; color: #6b7280; font-style: italic; }

/* ===== 404 Page ===== */
.not-found { text-align: center; padding: 8rem 1rem; }
.not-found h1 { font-size: 6rem; color: var(--honey-500); margin-bottom: 1rem; }
.not-found p { font-size: 1.25rem; color: #6b7280; margin-bottom: 2rem; }

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--bee-black); color: #d1d5db; padding: 1rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem;
  box-shadow: 0 -4px 6px rgba(0,0,0,0.3);
}
.cookie-banner p { font-size: 0.875rem; }
.cookie-banner button { padding: 0.5rem 1.5rem; border-radius: 0.375rem; font-weight: 600; cursor: pointer; border: none; }
.cookie-accept { background: var(--honey-500); color: var(--bee-black); }
.cookie-decline { background: #4b5563; color: #fff; }
.cookie-banner.hidden { display: none; }

/* ===== Loading ===== */
.loading { text-align: center; padding: 4rem; color: #9ca3af; }
.spinner {
  display: inline-block; width: 2rem; height: 2rem;
  border: 3px solid var(--honey-100); border-top-color: var(--honey-500);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Map ===== */
.map-section { margin-bottom: 4rem; }
.map-section iframe { width: 100%; height: 400px; border: 0; border-radius: 0.75rem; }

/* ===== Mobile Fixes ===== */
@media (max-width: 767px) {
  /* Hero */
  .hero { min-height: auto; padding: 5rem 0 4rem; }
  .hero-tagline { font-size: 1rem; }

  /* Section headers */
  .section-header h1 { font-size: 1.75rem; padding: 0 1rem; }
  .section-header p { padding: 0 1rem; }

  /* Home page */
  .about-preview { padding: 3rem 0; }
  .featured-specials { padding: 3rem 0; }
  .featured-specials-grid { grid-template-columns: 1fr; }

  /* Events */
  .event-types { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .events-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }

  /* Map */
  .map-section iframe { height: 280px; }
}

@media (max-width: 374px) {
  .event-types { grid-template-columns: 1fr; }
}
