/* ─── Design Tokens ─────────────────────────────── */
:root {
  --color-primary: #F5A623;
  --color-primary-dark: #D4891A;
  --color-dark: #2C2C2C;
  --color-footer-bg: #3D2B1F;
  --color-white: #FFFFFF;
  --color-light: #F8F6F2;
  --color-text: #333333;
  --color-text-muted: #777777;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1100px;
  --nav-height: 70px;
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ─── Utilities ──────────────────────────────────── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 4rem 0; }
.text-center { text-align: center; }

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.btn-primary { background: var(--color-primary); color: var(--color-dark); }
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-dark { background: var(--color-dark); color: var(--color-white); }
.btn-dark:hover { background: #444; }

/* ─── Promo Bar ──────────────────────────────────── */
.promo-bar {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}
.promo-bar a { color: var(--color-primary); text-decoration: underline; margin-left: 0.5rem; }

/* ─── Header & Nav ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid #e8e8e8;
  height: var(--nav-height);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.main-nav a {
  display: block;
  padding: 0.4rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-dark);
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: var(--color-primary); }
.main-nav a.btn-nav {
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.4rem 0.9rem;
}
.main-nav a.btn-nav:hover { background: var(--color-primary-dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding: 2rem;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ─── Address Bar ────────────────────────────────── */
.address-bar {
  background: var(--color-white);
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.address-bar a { color: var(--color-dark); display: inline-flex; align-items: center; gap: 0.4rem; }
.address-bar a:hover { color: var(--color-primary); }
.pin-icon { font-size: 1rem; }

/* ─── CTA Block ──────────────────────────────────── */
.cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  background: var(--color-primary);
}
.cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 0.75rem;
}
.cta-item + .cta-item {
  background: #F0F0F0;
}
.cta-item h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-dark);
}
.cta-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
}
.cta-item p { max-width: 340px; color: #555; font-size: 0.95rem; }

/* ─── Feature Banner ─────────────────────────────── */
.feature-banner {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.feature-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.feature-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding: 2rem;
}
.feature-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-content p {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

/* ─── About Section ──────────────────────────────── */
.about { background: var(--color-white); padding: 5rem 0; text-align: center; }
.about h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}
.about h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.about p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; color: #555; line-height: 1.8; }

/* ─── Gallery ────────────────────────────────────── */
.gallery { padding: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.gallery-item { overflow: hidden; display: block; aspect-ratio: 1; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ─── Reviews ────────────────────────────────────── */
.reviews { background: var(--color-primary); padding: 5rem 0; }
.reviews h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  color: var(--color-dark);
  margin-bottom: 2.5rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--color-white);
  border-radius: 4px;
  padding: 2rem;
}
.review-source {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}
.review-stars { color: var(--color-primary); font-size: 1.1rem; margin-bottom: 0.75rem; }
.reviewer-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.75rem; }
.review-card blockquote { font-size: 0.92rem; color: #555; line-height: 1.7; font-style: italic; }

/* ─── Map ────────────────────────────────────────── */
.map-section { line-height: 0; }
.map-section iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ─── Newsletter ─────────────────────────────────── */
.newsletter { background: var(--color-light); padding: 4rem 0; text-align: center; }
.newsletter h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}
.newsletter p { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0; max-width: 420px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 2px 0 0 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--color-primary); }
.newsletter-form button { border-radius: 0 2px 2px 0; }

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-col p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.8); transition: color 0.15s; }
.footer-col a:hover { color: var(--color-primary); }
.social-links { display: flex; flex-direction: column; gap: 0.4rem; }
.social-links a { font-size: 0.88rem; }
.footer-bottom {
  text-align: center;
  padding: 1.5rem 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Page Headers (inner pages) ─────────────────── */
.page-hero {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

/* ─── Menu / Drinks Page ─────────────────────────── */
.menu-page { background: var(--color-white); padding: 3rem 0 5rem; }
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.menu-tabs a {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--color-primary);
  color: var(--color-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
}
.menu-tabs a:hover, .menu-tabs a.active { background: var(--color-primary); }
.menu-section { max-width: 800px; margin: 0 auto 3rem; padding: 0 1.5rem; }
.menu-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.menu-section .section-note {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 1rem;
  margin-top: -1rem;
}
.menu-item { margin-bottom: 1.25rem; }
.menu-item h3 { font-size: 1rem; font-weight: 700; color: var(--color-dark); margin-bottom: 0.2rem; }
.menu-item p { font-size: 0.9rem; color: #666; line-height: 1.6; }
.menu-item .subsection { font-size: 0.8rem; color: var(--color-text-muted); font-style: italic; }
.menu-item-with-photo { display: flex; align-items: center; gap: 1rem; }
.menu-item-text { flex: 1; }
.menu-item-photo { width: 130px; height: 100px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
@media (max-width: 480px) {
  .menu-item-with-photo { flex-direction: column; align-items: flex-start; }
  .menu-item-photo { width: 100%; height: 180px; }
}

/* ─── Parties Page ───────────────────────────────── */
.parties-page { background: var(--color-white); padding: 3rem 0 5rem; }
.parties-intro { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; padding: 0 1.5rem; color: #555; font-size: 1rem; line-height: 1.8; }
.party-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--color-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.15s;
  background: var(--color-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--color-primary); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { text-align: center; margin-top: 0.5rem; }
.form-submit .btn { padding: 0.9rem 3rem; font-size: 0.9rem; }

/* ─── Lightbox ───────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
}
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid #e8e8e8;
    padding: 1rem;
    z-index: 99;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 0.75rem 1rem; border-radius: 4px; }
  .cta-block { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
}
