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

:root {
  --yellow: #FFCB00;
  --yellow-dark: #E6B800;
  --red: #C8102E;
  --blue: #003087;
  --blue-mid: #1a4fa0;
  --white: #FFFFFF;
  --off-white: #FFF9EC;
  --gray: #555;
  --light-gray: #f5f5f5;
  --font: 'Georgia', serif;
  --sans: system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: #222;
  background: var(--white);
  line-height: 1.6;
}

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

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--yellow);
  color: var(--blue);
  border: 2px solid var(--yellow);
}
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }

/* ── Header / Nav ── */
header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  font-family: var(--font);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--yellow); }
.nav-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
  flex-shrink: 0;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
}
nav ul a {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
nav ul a:hover, nav ul a.active {
  color: var(--yellow);
  background: rgba(255,255,255,0.08);
}

/* ── Hero ── */
.hero {
  background: var(--blue);
  background-image: linear-gradient(135deg, var(--blue) 0%, #001f5c 100%);
  min-height: 540px;
  display: flex;
  align-items: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.12;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.08;
}
.hero-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--yellow); }
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--blue);
  background-image: linear-gradient(135deg, var(--blue) 0%, #001f5c 100%);
  padding: 60px 24px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 10px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* ── Header Photo (home) ── */
.header-photo {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.header-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

/* ── Video Section ── */
.video-section {
  padding: 70px 24px;
  background: var(--blue);
}
.video-container {
  max-width: 615px;
  margin: 0 auto;
  text-align: center;
}
.video-container h2 {
  font-family: var(--font);
  font-size: 1.9rem;
  color: var(--yellow);
  font-weight: 900;
  margin-bottom: 28px;
}
.video-container video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: block;
}

/* ── Features ── */
.features {
  background: var(--off-white);
  padding: 70px 24px;
}
.features-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  border-top: 4px solid var(--yellow);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}
.feature-card p { color: var(--gray); font-size: 0.95rem; }

/* ── Reviews ── */
.reviews {
  background: var(--off-white);
  padding: 70px 24px;
}
.reviews-container {
  max-width: 1000px;
  margin: 0 auto;
}
.reviews-container h2 {
  font-family: var(--font);
  font-size: 1.9rem;
  color: var(--blue);
  font-weight: 900;
  text-align: center;
  margin-bottom: 36px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 26px;
  border-left: 4px solid var(--yellow);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.review-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
}
.reviewer {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
}

/* ── Highlight ── */
.highlight {
  padding: 80px 24px;
  background: var(--white);
}
.highlight-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.highlight-text h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--blue);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}
.highlight-text p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 520px;
}
.highlight-text .btn-primary { color: var(--blue); }
.highlight-badge {
  flex-shrink: 0;
}
.highlight-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--yellow);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ── CTA Bar ── */
.cta-bar {
  background: var(--red);
  padding: 60px 24px;
  text-align: center;
}
.cta-bar h2 {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Menu Page ── */
.menu-section { padding: 60px 24px; background: var(--off-white); }
.menu-container { max-width: 800px; margin: 0 auto; }
.menu-category { margin-bottom: 52px; }
.cat-title {
  font-size: 1.5rem;
  font-family: var(--font);
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--yellow);
}
.cat-title span { border-bottom: none; }
.cat-note {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 20px;
}
.menu-items { display: flex; flex-direction: column; gap: 2px; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 6px;
  gap: 16px;
  border-left: 4px solid transparent;
  transition: border-color 0.2s;
}
.menu-item:hover { border-left-color: var(--yellow); }
.item-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
.item-info h3 em { font-style: normal; font-weight: 400; color: var(--gray); font-size: 0.85rem; }
.item-info p { font-size: 0.88rem; color: var(--gray); }
.price {
  font-weight: 800;
  font-size: 1.05rem;
  color: #111;
  white-space: nowrap;
  margin-top: 2px;
}

/* ── Gallery ── */
.gallery-section {
  padding: 70px 24px;
  background: var(--white);
}
.gallery-container {
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-container h2 {
  font-family: var(--font);
  font-size: 1.9rem;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 28px;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── About Page ── */
.about-section { padding: 70px 24px; background: var(--white); }
.about-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text h2 {
  font-family: var(--font);
  font-size: 1.9rem;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 18px;
}
.about-text p {
  color: var(--gray);
  font-size: 0.97rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-values { display: flex; flex-direction: column; gap: 18px; }
.value-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 22px 24px;
  border-left: 4px solid var(--yellow);
}
.value-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.value-card p { font-size: 0.88rem; color: var(--gray); }

/* ── Find Us ── */
.find-us { background: var(--off-white); padding: 70px 24px; }
.find-container { max-width: 960px; margin: 0 auto; text-align: center; }
.find-container h2 {
  font-family: var(--font);
  font-size: 2rem;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 10px;
}
.find-sub { color: var(--gray); font-size: 1rem; margin-bottom: 40px; }
.find-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  text-align: left;
}
.find-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-top: 4px solid var(--blue);
}
.find-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}
.find-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.5; }

/* ── Catering Bar ── */
.catering-bar {
  background: var(--blue);
  padding: 60px 24px;
  text-align: center;
}
.catering-inner h2 {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 10px;
}
.catering-inner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* ── Footer ── */
footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.85rem;
  line-height: 1.8;
}
footer a { color: var(--yellow); }
footer a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .highlight-inner { grid-template-columns: 1fr; }
  .highlight-badge { display: none; }
  .about-container { grid-template-columns: 1fr; }
  nav ul a { padding: 8px 10px; font-size: 0.82rem; }
  .header-photo { height: 260px; }
}
