
:root {
  --bg-dark: #020617;
  --bg-hero: #020617;
  --bg-light: #f4f5fb;
  --primary: #fbbf24;
  --primary-strong: #f97316;
  --accent: #22c55e;
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 10px 26px rgba(15, 23, 42, 0.14);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #ffffff;
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

/* Top bar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(14px);
  color: #e5e7eb;
}

.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.brand-sub {
  font-size: 0.72rem;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 3px;
  opacity: 0.88;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--primary), var(--primary-strong));
  transition: transform 0.18s ease-out;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-call {
  display: flex;
  align-items: center;
}

.nav-call a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  font-size: 0.82rem;
}

/* Full hero image */

.hero-full {
  width: 100%;
  min-height: 75vh;
  background:
    linear-gradient(to bottom, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.65)),
    url("images/hero-terrace.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Hero text section below image */

.hero-text {
  background: var(--bg-dark);
  color: #e5e7eb;
  padding: 2.6rem 1.5rem 2.4rem;
}

.hero-text-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.hero-title {
  margin: 0.4rem 0 0.4rem;
  font-size: clamp(2.1rem, 3.5vw, 2.6rem);
}

.hero-subtitle {
  margin: 0;
  max-width: 640px;
  color: #cbd5f5;
  font-size: 0.98rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #111827;
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: #e5e7f5;
  border: 1px solid rgba(148, 163, 184, 0.8);
}

.hero-badges {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
}

.hero-badges span {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.34rem 0.8rem;
}

/* Sections */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.8rem 1.5rem;
}

.section-header {
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.section-title {
  font-size: 1.5rem;
  margin: 0.3rem 0;
}

.section-lead {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-muted);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.about-text p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.info-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.4rem 1.5rem;
  font-size: 0.9rem;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.info-row {
  margin-bottom: 0.55rem;
}

.info-label {
  display: inline-block;
  min-width: 96px;
  font-weight: 600;
}

.info-value a {
  color: #2563eb;
}

/* Popular dishes */

.popular-section {
  background: radial-gradient(circle at top, #e0f2fe 0, #f9fafb 45%, #f9fafb 100%);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.dish-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.dish-img {
  position: relative;
}

.dish-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.dish-pill {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 0.24rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  color: #f9fafb;
  font-size: 0.75rem;
}

.dish-body {
  padding: 0.75rem 0.9rem 1rem;
}

.dish-sub {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.dish-title {
  margin: 0.25rem 0 0.35rem;
  font-size: 0.96rem;
}

.dish-desc {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Menu overview */

.menu-section {
  background: #f9fafb;
}

.menu-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.menu-column {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1rem 1.1rem 1.1rem;
  font-size: 0.88rem;
}

.menu-column h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.menu-note {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  padding: 0.32rem 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.5);
}

.menu-list li:last-child {
  border-bottom: 0;
}

.menu-item-main {
  display: block;
}

.menu-item-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item img {
  border-radius: 14px;
  height: 150px;
  object-fit: cover;
}

/* Reviews */

.reviews-section {
  background: radial-gradient(circle at top, #eef2ff 0, #f9fafb 40%, #f9fafb 100%);
}

.reviews-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 1.7rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.82rem;
}

.google-badge strong {
  font-size: 0.9rem;
}

.stars {
  color: #facc15;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.reviews-grid {
  display: grid;
  gap: 0.95rem;
}

.review-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}

.review-name {
  font-weight: 600;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-text {
  margin: 0.25rem 0 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Visit us */

.visit-card {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #e5e7eb;
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.4rem;
  font-size: 0.92rem;
}

.visit-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Footer */

footer {
  background: #020617;
  color: #9ca3af;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* Responsive */

@media (max-width: 920px) {
  .about-grid,
  .reviews-wrap {
    grid-template-columns: minmax(0, 1fr);
  }
  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .menu-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    padding-inline: 1rem;
  }
  .nav-links {
    display: none;
  }
  .hero-text {
    padding-inline: 1rem;
  }
  .section {
    padding-inline: 1rem;
  }
  .dish-grid,
  .menu-layout,
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-inner {
    flex-direction: column;
  }
}
