/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #c0392b;
  --dark:   #1a1a1a;
  --mid:    #3d3d3d;
  --light:  #f5f1eb;
  --white:  #ffffff;
  --border: #e2ddd6;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Open Sans', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* ─── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}

.site-header.scrolled,
.site-header.solid {
  background: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: .5px;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}

nav a {
  color: #fff;
  margin-left: 28px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}

nav a:hover { color: #ddd; }

nav a.active { color: #e8c49a; }

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: block;
  background: #111;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: rgba(0,0,0,.45);
  text-align: center;
}

.hero-overlay h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-overlay p {
  font-size: 1.1rem;
  color: #e8e8e8;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}

.btn:hover { background: #a93226; transform: translateY(-1px); }

/* ─── Generic Section ──────────────────────────────────────────────────────── */
.section {
  padding: 72px 0;
  scroll-margin-top: 60px;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 24px;
  color: var(--dark);
}

/* ─── About ────────────────────────────────────────────────────────────────── */
.about {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.about p {
  max-width: 660px;
  font-size: 1.05rem;
  color: var(--mid);
}

/* ─── Hours ────────────────────────────────────────────────────────────────── */
.hours {
  background: var(--light);
}

.hours-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 420px;
  font-size: 1rem;
}

.hours-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}

.hours-table td:first-child {
  font-weight: 600;
  width: 150px;
}

.hours-table tr.closed td {
  color: #999;
  font-style: italic;
}

/* ─── Reviews ──────────────────────────────────────────────────────────────── */
.reviews {
  background: var(--light);
  text-align: center;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.reviews-track {
  display: flex;
  transition: transform .5s ease;
}

.review-card {
  min-width: 100%;
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.review-stars {
  color: #e5a00d;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 620px;
  line-height: 1.8;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
  letter-spacing: .3px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}

.reviews-dot.active { background: var(--red); }

.reviews-source {
  margin-top: 20px;
  font-size: .78rem;
  color: #aaa;
}

/* ─── Menu Teaser ──────────────────────────────────────────────────────────── */
.menu-teaser {
  background: var(--dark);
  border-bottom: 1px solid #333;
}

.menu-teaser h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.menu-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.menu-teaser-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}

.menu-intro {
  color: #aaa;
  max-width: 520px;
  font-size: 1rem;
}

/* ─── Menu Page ────────────────────────────────────────────────────────────── */
.menu-hero {
  background: var(--dark);
  padding: 120px 0 48px;
  text-align: center;
}

.menu-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 8px;
}

.menu-hero p {
  color: #aaa;
  font-size: 1rem;
}

/* ─── Full Menu ────────────────────────────────────────────────────────────── */
.full-menu {
  display: none;
  background: var(--white);
  padding-top: 56px;
  padding-bottom: 80px;
}

.full-menu.open {
  display: block;
}

.menu-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.menu-cat-nav a {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: .3px;
  transition: background .15s, color .15s, border-color .15s;
}

.menu-cat-nav a:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.menu-cat {
  margin-bottom: 52px;
  scroll-margin-top: 80px;
}

.cat-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  margin-bottom: 6px;
}

.cat-note {
  font-size: .82rem;
  color: #999;
  margin-bottom: 16px;
  font-style: italic;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.item-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.item-name {
  font-weight: 600;
  font-size: .93rem;
}

.item-desc {
  font-size: .78rem;
  color: #999;
}

.item-prices {
  display: flex;
  gap: 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--mid);
  white-space: nowrap;
  flex-shrink: 0;
}

.item-prices span {
  min-width: 48px;
  text-align: right;
}

.size-head {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 10px 0 2px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
}

.size-head span {
  min-width: 48px;
  text-align: right;
}

.menu-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cat-addon {
  font-size: .8rem;
  color: #999;
  padding-top: 10px;
  font-style: italic;
}

.menu-footer-note {
  text-align: center;
  font-size: .8rem;
  color: #bbb;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ─── Order Online ─────────────────────────────────────────────────────────── */
.order-online {
  background: var(--light);
  border-top: 1px solid var(--border);
  text-align: center;
}

.order-online p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--mid);
  font-size: 1.05rem;
}

/* ─── Contact ──────────────────────────────────────────────────────────────── */
.contact {
  background: var(--dark);
  color: var(--white);
}

.contact h2 { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.contact-block h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #e8c49a;
}

address {
  font-style: normal;
  line-height: 1.8;
  color: #ccc;
}

.map-link {
  display: inline-block;
  margin-top: 10px;
  color: #e8c49a;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.phone a {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  color: var(--white);
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8c49a;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: opacity .15s;
}
.fb-link:hover { opacity: .75; }
.fb-link svg {
  width: 22px;
  height: 22px;
  fill: #e8c49a;
  flex-shrink: 0;
}

/* ─── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: #111;
  color: #666;
  text-align: center;
  padding: 20px 0;
  font-size: .85rem;
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  nav a { margin-left: 16px; font-size: .8rem; }
  .logo { font-size: 1.2rem; }
  .hours-table td:first-child { width: 120px; }
  .menu-teaser-inner { flex-direction: column; }
  .menu-teaser-inner .btn { align-self: flex-start; }
  .item-prices { gap: 12px; font-size: .82rem; }
  .item-prices span, .size-head span { min-width: 42px; }
  .size-head { gap: 12px; }
}
