/* ============================================================
   Blueberry Kitchen & Coffee Shop — Main Stylesheet
   Premium dark-espresso theme with gold accents
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --clr-bg:         #0f0d08;
  --clr-surface:    #1a1610;
  --clr-card:       #231e14;
  --clr-card-hover: #2d2618;
  --clr-gold:       #c9a84c;
  --clr-gold-light: #e2c87e;
  --clr-gold-dim:   rgba(201, 168, 76, 0.15);
  --clr-blue:       #4a90c4;
  --clr-text:       #f5f0e8;
  --clr-muted:      #9e9080;
  --clr-border:     rgba(201, 168, 76, 0.18);
  --clr-success:    #27ae60;
  --clr-error:      #e74c3c;

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.2);

  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;

  --nav-height: 80px;
  --topbar-height: 42px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-gold); border-radius: 3px; }

/* ── Typography Utilities ──────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
}
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title p { color: var(--clr-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--clr-gold);
  color: #0f0d08;
}
.btn-primary:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 2px solid rgba(245,240,232,0.3);
}
.btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}
.btn-gold-outline {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
}
.btn-gold-outline:hover {
  background: var(--clr-gold);
  color: #0f0d08;
  transform: translateY(-2px);
}

/* ── Animate on Scroll ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { transform: translateX(-40px); opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { transform: translateX(40px);  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { transform: translateX(0); opacity: 1; }

/* ── Topbar ─────────────────────────────────────────────────── */
#topbar {
  background: #0c0a06;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--clr-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--clr-muted);
  transition: var(--transition-fast);
}
.topbar-contact a:hover { color: var(--clr-gold); }
.topbar-contact .icon { font-size: 0.9rem; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--clr-gold-dim);
  color: var(--clr-gold);
  font-size: 0.8rem;
  transition: var(--transition-fast);
}
.topbar-social a:hover { background: var(--clr-gold); color: #0f0d08; }

/* ── Header / Navbar ─────────────────────────────────────────── */
#header {
  position: fixed;
  top: var(--topbar-height);
  left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 998;
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: rgba(15, 13, 8, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo img { height: 48px; width: auto; }
.logo-text {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.5px;
}

/* Nav links */
.navbar { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(245,240,232,0.8);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  letter-spacing: 0.3px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: width var(--transition-fast);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--clr-gold); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.book-btn {
  margin-left: 12px;
  background: var(--clr-gold);
  color: #0f0d08 !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  transition: var(--transition) !important;
}
.book-btn::after { display: none !important; }
.book-btn:hover {
  background: var(--clr-gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

/* Mobile nav toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Section ───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: url('assets/img/hero-bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: calc(var(--topbar-height) + var(--nav-height));
  position: relative;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,8,4,0.85) 0%, rgba(20,15,8,0.70) 50%, rgba(10,8,4,0.75) 100%);
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--clr-bg), transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 24px;
}
.hero-tag span { width: 6px; height: 6px; background: var(--clr-gold); border-radius: 50%; }
#hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--clr-text);
}
#hero h1 span {
  color: var(--clr-gold);
  font-style: italic;
}
#hero p {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.75);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--clr-border);
}
.hero-badge { text-align: center; }
.hero-badge .num {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold);
  display: block;
  line-height: 1;
}
.hero-badge .label {
  font-size: 0.75rem;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ── Stats Bar ───────────────────────────────────────────────── */
#stats {
  padding: 0;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 36px 24px;
  border-right: 1px solid var(--clr-border);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--clr-gold-dim); }
.stat-item .num {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  display: block;
  line-height: 1;
}
.stat-item .label {
  font-size: 0.8rem;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* ── About Section ──────────────────────────────────────────── */
#about { background: var(--clr-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 480px;
  box-shadow: var(--shadow-card);
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--clr-gold);
  color: #0f0d08;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-gold);
  line-height: 1.2;
}
.about-img-badge .small { font-size: 0.65rem; font-weight: 500; font-family: var(--ff-body); letter-spacing: 1px; text-transform: uppercase; }
.about-content h3 {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-content .lead {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.75);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}
.about-content p { color: var(--clr-muted); margin-bottom: 32px; line-height: 1.8; }
.about-checklist { margin-bottom: 36px; }
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
  color: rgba(245,240,232,0.85);
  font-size: 0.95rem;
}
.about-checklist li:last-child { border-bottom: none; }
.about-checklist .check {
  width: 22px; height: 22px;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Why Us ─────────────────────────────────────────────────── */
#why-us { background: var(--clr-surface); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover { background: var(--clr-card-hover); transform: translateY(-6px); box-shadow: var(--shadow-card); }
.why-card:hover::before { opacity: 1; }
.why-num {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-gold-dim);
  line-height: 1;
  margin-bottom: 16px;
  border: 2px solid var(--clr-border);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
}
.why-card h4 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--clr-text);
}
.why-card p { color: var(--clr-muted); font-size: 0.93rem; line-height: 1.7; }

/* ── Specials Section ────────────────────────────────────────── */
#specials { background: var(--clr-bg); }
.specials-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.specials-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: calc(var(--topbar-height) + var(--nav-height) + 20px);
}
.special-tab {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-muted);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}
.special-tab:hover { background: var(--clr-gold-dim); color: var(--clr-text); border-left-color: var(--clr-gold); }
.special-tab.active { background: var(--clr-gold-dim); color: var(--clr-gold); border-left-color: var(--clr-gold); border-color: var(--clr-border); }
.specials-content { min-height: 300px; }
.special-panel { display: none; }
.special-panel.active { display: block; animation: fadeSlideIn 0.4s ease; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.special-card {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 40px;
  align-items: center;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.special-card h3 { font-family: var(--ff-heading); font-size: 1.6rem; margin-bottom: 12px; }
.special-card .desc { color: var(--clr-muted); line-height: 1.7; font-size: 0.95rem; margin-bottom: 20px; }
.special-img {
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.special-img-placeholder {
  width: 220px; height: 180px;
  background: var(--clr-card-hover);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.special-tag {
  display: inline-block;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-border);
  color: var(--clr-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  margin-bottom: 12px;
}

/* ── Menu Section ───────────────────────────────────────────── */
#menu { background: var(--clr-surface); }
.menu-filters-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.menu-category-filters, .menu-dietary-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.filter-btn.active { background: var(--clr-gold); color: #0f0d08; border-color: var(--clr-gold); }

.diet-btn {
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}
.diet-btn:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.diet-btn.active { background: var(--clr-gold-dim); color: var(--clr-gold); border-color: var(--clr-gold); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.menu-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.menu-card:hover { background: var(--clr-card-hover); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.menu-card-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--clr-bg);
}
.menu-card-img-placeholder {
  width: 90px; height: 90px;
  border-radius: var(--radius-sm);
  background: var(--clr-card-hover);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.menu-card-body { flex: 1; min-width: 0; }
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}
.menu-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.3;
}
.menu-card-price {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-card-desc {
  font-size: 0.82rem;
  color: var(--clr-muted);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-dietary-badges { display: flex; gap: 4px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  border-radius: var(--radius-xl);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-veg     { background: rgba(39,174,96,0.15);  color: #27ae60; border: 1px solid rgba(39,174,96,0.3); }
.badge-nonveg  { background: rgba(231,76,60,0.12);  color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }
.badge-spicy   { background: rgba(230,126,34,0.15); color: #e67e22; border: 1px solid rgba(230,126,34,0.3); }
.badge-gf      { background: rgba(74,144,196,0.15); color: #4a90c4; border: 1px solid rgba(74,144,196,0.3); }

.menu-empty, .menu-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  color: var(--clr-muted);
  font-size: 1rem;
}
.menu-loading::after {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid var(--clr-border);
  border-top-color: var(--clr-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Events Section ─────────────────────────────────────────── */
#events { background: var(--clr-bg); }
.events-slider { position: relative; overflow: hidden; }
.events-track { display: flex; transition: transform 0.5s ease; }
.event-slide { min-width: 100%; }
.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.event-img { width: 100%; height: 360px; object-fit: cover; }
.event-content { padding: 48px 48px 48px 0; }
.event-content h3 { font-family: var(--ff-heading); font-size: 1.8rem; margin-bottom: 16px; }
.event-content .lead { color: rgba(245,240,232,0.75); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.event-content p { color: var(--clr-muted); margin-bottom: 24px; line-height: 1.7; }
.event-list { margin-bottom: 28px; }
.event-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: rgba(245,240,232,0.8);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--clr-border);
}
.event-list li:last-child { border-bottom: none; }
.event-list .dot { color: var(--clr-gold); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--clr-border);
  color: var(--clr-text);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--clr-card);
}
.slider-btn:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: var(--transition-fast);
}
.slider-dot.active { background: var(--clr-gold); width: 24px; border-radius: 4px; }

/* ── Book a Table ────────────────────────────────────────────── */
#book-table {
  background: var(--clr-surface);
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.booking-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.booking-info h3 { font-family: var(--ff-heading); font-size: 1.6rem; margin-bottom: 16px; }
.booking-info p  { color: var(--clr-muted); margin-bottom: 32px; line-height: 1.8; }
.booking-details { display: flex; flex-direction: column; gap: 16px; }
.booking-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
}
.booking-detail-icon {
  width: 44px; height: 44px;
  background: var(--clr-gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.booking-detail-text h5 { font-size: 0.8rem; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.booking-detail-text p  { font-size: 0.92rem; color: var(--clr-text); }

/* Form */
.booking-form, .contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--clr-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--clr-text);
  font-size: 0.93rem;
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-gold);
  background: var(--clr-card-hover);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239e9080' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-message { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.88rem; display: none; }
.form-message.success { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3); color: #27ae60; display: block; }
.form-message.error   { background: rgba(231,76,60,0.12);  border: 1px solid rgba(231,76,60,0.3);  color: #e74c3c; display: block; }
.form-submit { align-self: flex-start; }

/* ── Testimonials ────────────────────────────────────────────── */
#testimonials { background: var(--clr-bg); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; padding: 0 80px; }
.testimonial-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--ff-heading);
  font-size: 8rem;
  color: var(--clr-gold-dim);
  position: absolute;
  top: -20px;
  left: 36px;
  line-height: 1;
  user-select: none;
}
.testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 20px; font-size: 1.1rem; }
.star-filled { color: var(--clr-gold); }
.star-empty  { color: var(--clr-border); }
.testimonial-title { font-family: var(--ff-heading); font-size: 1.2rem; color: var(--clr-gold); margin-bottom: 16px; }
.testimonial-text { font-size: 1rem; color: rgba(245,240,232,0.8); line-height: 1.85; margin-bottom: 32px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-gold);
}
.testimonial-avatar-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--clr-gold-dim);
  border: 2px solid var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-gold);
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }

/* ── Gallery ────────────────────────────────────────────────── */
#gallery { background: var(--clr-surface); padding-bottom: 0; }
#gallery .section-title { padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 60px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--clr-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-size: 0.8rem; margin-top: 8px; color: rgba(255,255,255,0.8); }
.gallery-loading { grid-column: 1 / -1; text-align: center; padding: 60px; color: var(--clr-muted); }

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-height: 85vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 1;
}
.lightbox-close:hover { background: var(--clr-gold); color: #0f0d08; }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-nav:hover { background: var(--clr-gold); color: #0f0d08; }
.lightbox-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  white-space: nowrap;
}

/* ── Newsletter ──────────────────────────────────────────────── */
#newsletter {
  background: linear-gradient(135deg, #0c0a06 0%, #1a1610 50%, #0c0a06 100%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 80px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.newsletter-text h3 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  margin-bottom: 10px;
}
.newsletter-text p { color: var(--clr-muted); font-size: 0.95rem; }
.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 500px;
}
.newsletter-form input {
  flex: 1;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 14px 22px;
  color: var(--clr-text);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-fast);
}
.newsletter-form input:focus { border-color: var(--clr-gold); }
.newsletter-msg { margin-top: 10px; font-size: 0.85rem; }
.newsletter-msg.success { color: var(--clr-success); }
.newsletter-msg.error   { color: var(--clr-error); }

/* ── Contact ────────────────────────────────────────────────── */
#contact { background: var(--clr-bg); }
.contact-layout { display: grid; grid-template-columns: 360px 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--clr-gold); }
.contact-icon-wrap {
  width: 48px; height: 48px;
  background: var(--clr-gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card h5 { font-size: 0.78rem; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a {
  font-size: 0.92rem;
  color: var(--clr-text);
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--clr-gold); }
.contact-form-side { display: flex; flex-direction: column; gap: 20px; }
.contact-map {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  border: none;
  overflow: hidden;
}

/* ── Footer ─────────────────────────────────────────────────── */
#footer {
  background: #0c0a06;
  border-top: 1px solid var(--clr-border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--clr-gold);
  margin-bottom: 16px;
}
.footer-brand p { color: var(--clr-muted); line-height: 1.8; font-size: 0.9rem; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-border);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--clr-gold); color: #0f0d08; border-color: var(--clr-gold); }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--clr-muted); font-size: 0.9rem; transition: var(--transition-fast); }
.footer-col ul li a:hover { color: var(--clr-gold); }
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--clr-muted);
}
.footer-bottom a { color: var(--clr-gold); }

/* ── Floating Buttons ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 990;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%  { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

#back-to-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.1rem;
  z-index: 990;
  transition: var(--transition);
  cursor: pointer;
}
#back-to-top.visible { display: flex; }
#back-to-top:hover { background: var(--clr-gold); color: #0f0d08; border-color: var(--clr-gold); }

/* ── Cookie Banner ───────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 16px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9998;
  flex-wrap: wrap;
}
#cookie-banner.visible { display: flex; }
#cookie-banner p { font-size: 0.88rem; color: var(--clr-muted); }
#cookie-banner a { color: var(--clr-gold); }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept {
  padding: 8px 20px;
  background: var(--clr-gold);
  color: #0f0d08;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}
.cookie-accept:hover { background: var(--clr-gold-light); }
.cookie-decline {
  padding: 8px 20px;
  background: transparent;
  color: var(--clr-muted);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: var(--transition-fast);
}
.cookie-decline:hover { border-color: var(--clr-gold); color: var(--clr-gold); }

/* ── Coffee/Drinks Section ──────────────────────────────────── */
#drinks { background: var(--clr-surface); }
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.drink-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.drink-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--clr-gold); }
.drink-icon { font-size: 2.4rem; margin-bottom: 16px; }
.drink-card h4 { font-family: var(--ff-heading); font-size: 1.1rem; margin-bottom: 8px; }
.drink-card p { color: var(--clr-muted); font-size: 0.85rem; margin-bottom: 14px; line-height: 1.6; }
.drink-price { font-weight: 700; color: var(--clr-gold); font-size: 0.95rem; }

/* ── Preloader ───────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  margin-bottom: 24px;
}
.preloader-logo img {
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: pulse-logo 2s infinite ease-in-out;
}
@keyframes pulse-logo {
  0%, 100% { transform: scale(0.97); opacity: 0.85; }
  50% { transform: scale(1.03); opacity: 1; }
}
.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--clr-border);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--clr-gold);
  animation: loading 1.5s ease-in-out infinite;
}
@keyframes loading {
  0%   { width: 0; margin-left: 0; }
  50%  { width: 60%; margin-left: 20%; }
  100% { width: 0; margin-left: 100%; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-img-badge { bottom: 16px; right: 16px; }
  .specials-layout { grid-template-columns: 1fr; }
  .specials-tabs { flex-direction: row; flex-wrap: wrap; position: static; }
  .special-card { grid-template-columns: 1fr; }
  .special-img { width: 100%; height: 240px; }
  .special-img-placeholder { width: 100%; }
  .booking-grid  { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .mobile-toggle { display: flex; }
  .navbar {
    position: fixed;
    top: calc(var(--topbar-height) + var(--nav-height));
    left: 0; right: 0;
    background: rgba(12,10,6,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--clr-border);
  }
  .navbar.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { width: 100%; padding: 12px 16px; }
  .book-btn { width: 100%; text-align: center; justify-content: center; margin-left: 0 !important; }
  .hero-btns { flex-direction: column; }
  .hero-badges { gap: 16px; flex-wrap: wrap; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .event-card { grid-template-columns: 1fr; }
  .event-content { padding: 32px; }
  .testimonial-slide { padding: 0 16px; }
  .topbar-contact { gap: 12px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .drinks-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
