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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e0c56e;
  --gold-dark: #a68a3a;
  --text-primary: #f0ece2;
  --text-secondary: #a09a8c;
  --text-muted: #6b6560;
  --accent: #c9a84c;
  --border: rgba(201,168,76,0.15);
  --border-hover: rgba(201,168,76,0.35);
  --shadow: 0 4px 30px rgba(0,0,0,0.4);
  --glass: rgba(22,22,22,0.85);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── Animated Background ─── */
.bg-pattern {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

/* ─── Header ─── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  transition: var(--transition);
}

.header-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.logo-wrap { display: flex; align-items: center; gap: 10px; }

.logo-wrap img {
  height: 44px; width: auto;
  filter: brightness(1.1);
}

.header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a; font-weight: 600; font-size: 13px;
  padding: 10px 20px; border-radius: 50px;
  text-decoration: none; letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 2px 15px rgba(201,168,76,0.25);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 25px rgba(201,168,76,0.4);
}

/* ─── Hero Section ─── */
.hero {
  text-align: center; padding: 50px 20px 30px;
  position: relative;
}

.hero::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  line-height: 1.15; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 14px; color: var(--text-secondary);
  max-width: 500px; margin: 0 auto 20px;
  line-height: 1.7;
}

.hero-info {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  font-size: 12px; color: var(--text-muted);
}
.hero-info span {
  display: flex; align-items: center; gap: 5px;
}

/* ─── Category Navigation ─── */
.cat-nav {
  position: sticky; top: 68px; z-index: 90;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-nav-inner {
  display: flex; gap: 4px;
  max-width: 900px; margin: 0 auto;
  padding: 10px 0;
}

.cat-btn {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  padding: 8px 16px; border-radius: 50px;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.cat-btn:hover { color: var(--text-secondary); }
.cat-btn.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.25);
}

/* ─── Menu Sections ─── */
.menu-container {
  max-width: 900px; margin: 0 auto;
  padding: 0 16px 80px;
  position: relative; z-index: 1;
}

.menu-section {
  padding-top: 30px;
  animation: fadeUp 0.5s ease both;
}

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

.section-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.section-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  font-size: 18px; flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 12px; color: var(--text-muted);
  font-style: italic; margin-top: 2px;
}

/* ─── Menu Items ─── */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: var(--transition);
  cursor: default;
  gap: 12px;
}
.menu-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.item-info { flex: 1; }

.item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.item-tag {
  display: inline-block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.5px;
  padding: 2px 8px; border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  position: relative; top: -1px;
}
.item-tag.veg {
  color: #4ade80; background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
}
.item-tag.popular {
  color: var(--gold); background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
}
.item-tag.spicy {
  color: #f87171; background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.2);
}

.item-desc {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.5; margin-top: 4px;
}

.item-price-wrap {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 4px; flex-shrink: 0;
}

.item-price {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.item-price-sub {
  font-size: 11px; color: var(--text-muted);
  white-space: nowrap;
}

/* ─── Drinks Columns ─── */
.drinks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.drink-item {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
}
.drink-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.drink-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600;
  color: var(--text-primary);
}

.drink-detail {
  font-size: 12px; color: var(--text-muted);
}

.drink-price {
  font-size: 15px; font-weight: 600;
  color: var(--gold); white-space: nowrap;
}

/* ─── Allergy Banner ─── */
.allergy-notice {
  max-width: 900px; margin: 0 auto 40px;
  padding: 16px 20px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 12px; color: var(--text-muted);
  line-height: 1.6;
}
.allergy-notice strong { color: var(--gold); }

/* ─── Footer ─── */
.footer {
  text-align: center; padding: 30px 20px 40px;
  border-top: 1px solid var(--border);
}

.footer-logo { height: 36px; margin-bottom: 14px; filter: brightness(1.1); }

.footer-address {
  font-size: 13px; color: var(--text-secondary);
  margin-bottom: 6px;
}
.footer-contact {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-contact a {
  color: var(--gold); text-decoration: none;
}

.footer-book {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold); font-size: 13px; font-weight: 600;
  padding: 12px 28px; border-radius: 50px;
  text-decoration: none; letter-spacing: 0.5px;
  transition: var(--transition);
}
.footer-book:hover {
  background: var(--gold); color: #0a0a0a;
}

.footer-copy {
  font-size: 11px; color: var(--text-muted);
  margin-top: 20px;
}

/* ─── Desktop (tablet+) ─── */
@media (min-width: 640px) {
  .header { padding: 14px 30px; }
  .logo-wrap img { height: 52px; }
  .hero { padding: 60px 30px 40px; }
  .hero h1 { font-size: 46px; }
  .hero p { font-size: 15px; }
  .menu-container { padding: 0 30px 100px; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .drinks-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .section-title { font-size: 26px; }
}

@media (min-width: 900px) {
  .hero h1 { font-size: 52px; }
  .menu-item { padding: 18px 22px; }
  .item-name { font-size: 19px; }
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
