/* ================================================================
   GREEK CAFÉ — styles.css
   Greek Blue & White theme with Dark Navy and Gold accents
   ================================================================ */

/* ── 1. CSS Custom Properties ─────────────────────────────────── */
:root {
  --greek-blue:    #1B4F9B;
  --greek-blue-dk: #0D2B5E;
  --greek-blue-lt: #2E6CC7;
  --navy:          #0A1F3E;
  --gold:          #C9A84C;
  --gold-lt:       #E0C070;
  --white:         #FFFFFF;
  --off-white:     #F8F7F3;
  --light-gray:    #F2F0EC;
  --mid-gray:      #9A9A9A;
  --dark-gray:     #4A4A4A;
  --black:         #1A1A1A;

  --font-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:     'Lato', 'Helvetica Neue', Arial, sans-serif;

  --nav-height:    72px;
  --section-pad:   100px;
  --section-pad-sm: 60px;
  --container-max: 1180px;
  --radius:        4px;
  --shadow-sm:     0 2px 12px rgba(13,43,94,0.08);
  --shadow-md:     0 6px 28px rgba(13,43,94,0.13);
  --shadow-lg:     0 16px 48px rgba(13,43,94,0.2);
  --transition:    0.28s ease;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

address { font-style: normal; }

/* Smooth-scroll offset for sticky nav */
section[id], footer[id] {
  scroll-margin-top: var(--nav-height);
}

/* ── 3. Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--greek-blue-dk);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p { line-height: 1.75; }

/* ── 4. Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header--light h2 {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--dark-gray);
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-style: italic;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0.75rem auto 0;
  width: 180px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

.divider-gem {
  color: var(--gold);
  font-size: 9px;
  line-height: 1;
}

.section-divider--gold .divider-line { background: var(--gold-lt); }
.section-divider--gold .divider-gem  { color: var(--gold-lt); }

/* ── 5. Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo SVG — white in navbar */
.logo-nav .logo-temple polygon {
  fill: none;
  stroke: var(--white);
}
.logo-nav .logo-temple rect {
  fill: var(--white);
  stroke: none;
}
.logo-nav .logo-text-main,
.logo-nav .logo-text-sub {
  fill: var(--white);
}
.logo-nav .logo-gold-line {
  stroke: var(--gold);
}

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

.logo-nav {
  width: 160px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--gold-lt); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── 6. Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 31, 62, 0.45) 0%,
    rgba(10, 31, 62, 0.65) 60%,
    rgba(10, 31, 62, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 60px;
  max-width: 820px;
  animation: heroFadeIn 1.2s ease-out both;
}

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

/* Hero circular logo SVG — white */
.hero-logo-svg {
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
}

.hero-logo-svg circle,
.hero-logo-svg polygon,
.hero-logo-svg rect {
  stroke: var(--white);
}

.hero-logo-svg rect { fill: var(--white); stroke: none; }
.hero-logo-svg polygon { fill: none; }

.hero-logo-text-main,
.hero-logo-text-sub {
  fill: var(--white);
}

.hero-logo-svg .logo-gold-line { stroke: var(--gold); }

.hero-slogan {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 14px 44px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.hero-scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  display: flex;
  align-items: center;
}

.hero-scroll-down svg { width: 32px; height: 32px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── 7. Highlights Strip ──────────────────────────────────────── */
.highlights {
  background: var(--greek-blue-dk);
  padding: 72px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.highlight-item {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color var(--transition), transform var(--transition);
}

.highlight-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.highlight-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.highlight-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.highlight-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* ── 8. About ─────────────────────────────────────────────────── */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
}

.about-img-main {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-img-secondary {
  width: 75%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-left: auto;
  border: 4px solid var(--white);
  margin-top: -60px;
  position: relative;
  z-index: 1;
}

.about-intro {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--greek-blue-dk);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.about-text p {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.75rem;
}

.chip {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--greek-blue);
  color: var(--greek-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
}

.chip:hover {
  background: var(--greek-blue);
  color: var(--white);
}

/* ── 9. Gallery ───────────────────────────────────────────────── */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--greek-blue-dk);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,62,0.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.3;
}

/* ── 10. Reviews Carousel ─────────────────────────────────────── */
.reviews-section {
  padding: var(--section-pad) 0;
  background: var(--greek-blue);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
}

.reviews-section .section-header h2 { color: var(--white); }
.reviews-section .section-subtitle { color: rgba(255,255,255,0.75); }

.reviews-rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.rating-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 3px;
}

.rating-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

.reviews-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.reviews-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  min-width: 100%;
  background: var(--white);
  padding: 44px 52px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.review-quote {
  position: absolute;
  top: 24px;
  left: 40px;
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--greek-blue);
  opacity: 0.08;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}

.review-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 680px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--greek-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--greek-blue-dk);
}

/* Carousel buttons */
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.carousel-btn svg { width: 20px; height: 20px; }

.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.carousel-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* ── 11. Menu ─────────────────────────────────────────────────── */
.menu-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

/* Tab navigation */
.menu-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  position: relative;
}

.menu-tabs-scroll {
  flex: 1;
  overflow: hidden;
}

.menu-tabs {
  display: flex;
  gap: 0;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.menu-tab {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid #D5CBBB;
  border-bottom: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-gray);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  position: relative;
}

.menu-tab + .menu-tab { margin-left: -1px; }

.menu-tab:hover {
  background: var(--light-gray);
  color: var(--greek-blue);
}

.menu-tab.active {
  background: var(--greek-blue);
  color: var(--white);
  border-color: var(--greek-blue);
  z-index: 1;
}

.menu-arrow {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--greek-blue);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  border-radius: var(--radius);
}

.menu-arrow svg { width: 18px; height: 18px; }

.menu-arrow:hover { background: var(--greek-blue-dk); }

.menu-arrow:disabled {
  background: var(--mid-gray);
  cursor: not-allowed;
  opacity: 0.5;
}

/* Menu panels */
.menu-panels-container {
  background: var(--white);
  border: 1px solid #D5CBBB;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-sm);
}

.menu-panel {
  display: none;
  padding: 52px 60px;
}

.menu-panel.active { display: block; }

/* Decorative top border on panel */
.menu-panel::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--greek-blue), var(--gold), var(--greek-blue), transparent);
  margin-bottom: 40px;
}

.menu-panel-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.menu-category-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--greek-blue-dk);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.menu-category-desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--mid-gray);
}

.menu-category-desc strong {
  color: var(--greek-blue);
  font-weight: 700;
}

/* Individual menu items */
.menu-items-list {
  max-width: 760px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(27, 79, 155, 0.08);
  gap: 24px;
}

.menu-item:last-child { border-bottom: none; }

.menu-item-left {
  flex: 1;
}

.menu-item-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--greek-blue-dk);
  letter-spacing: 0.01em;
}

.menu-item-name em {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--mid-gray);
}

.menu-item-desc {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-style: italic;
  margin-top: 3px;
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--greek-blue);
  white-space: nowrap;
  padding-top: 2px;
}

/* ── 12. Location & Hours ─────────────────────────────────────── */
.location-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: stretch;
  min-height: 420px;
}

.location-info-card {
  background: var(--greek-blue-dk);
  color: var(--white);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-radius: var(--radius);
}

.location-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.location-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.location-icon svg {
  width: 100%;
  height: 100%;
}

.location-block h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.location-block address,
.location-block p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.location-block address em {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.location-phone {
  color: var(--gold-lt);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-serif);
  transition: color var(--transition);
}

.location-phone:hover { color: var(--white); }

.hours-table {
  border-collapse: collapse;
  width: 100%;
}

.hours-table td {
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

.hours-table td:first-child {
  padding-right: 24px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

.closed-row td { color: rgba(255,255,255,0.45) !important; }

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-md);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  border: none;
}

/* ── 13. Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
}

.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* Footer logo SVG — white */
.logo-footer .logo-temple polygon {
  fill: none;
  stroke: var(--white);
}
.logo-footer .logo-temple rect {
  fill: var(--white);
  stroke: none;
}
.logo-footer .logo-text-main,
.logo-footer .logo-text-sub {
  fill: var(--white);
}
.logo-footer .logo-gold-line { stroke: var(--gold); }

.logo-footer {
  width: 180px;
  height: auto;
}

.footer-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--gold); }

/* ── 14. Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  visibility: visible;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 35, 0.92);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 3;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ── 15. Scroll Animations ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── 16. Media Queries ────────────────────────────────────────── */

/* ---- Tablet: 768px – 1199px ---- */
@media (max-width: 1199px) {
  :root {
    --section-pad: 80px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-stack {
    max-width: 600px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 320px;
  }

  .menu-panel {
    padding: 40px 36px;
  }
}

/* ---- Mobile: ≤ 767px ---- */
@media (max-width: 767px) {
  :root {
    --section-pad: var(--section-pad-sm);
    --nav-height: 64px;
  }

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 80vw);
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 80px 36px 36px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1000;
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-link {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .nav-link::after { display: none; }

  /* Hero */
  .hero-logo-svg { width: 130px; height: 130px; }
  .hero-cta { padding: 12px 32px; }

  /* Highlights */
  .highlights { padding: 52px 0; }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .highlight-item { padding: 24px 16px; }

  /* About */
  .about-img-secondary {
    display: none;
  }

  .about-img-main { height: 260px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Reviews */
  .review-card {
    padding: 32px 28px;
  }

  .review-text { font-size: 0.98rem; }

  .reviews-carousel-wrapper {
    gap: 8px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  /* Menu tabs */
  .menu-nav-wrapper { gap: 4px; }

  .menu-tab {
    padding: 10px 14px;
    font-size: 0.76rem;
  }

  .menu-panel {
    padding: 28px 20px;
  }

  .menu-panel::before { display: none; }

  .menu-category-title { font-size: 1.6rem; }

  /* Location */
  .location-info-card {
    padding: 36px 28px;
    gap: 28px;
  }

  /* Footer */
  .footer-nav { gap: 20px; }
  .footer-nav a { font-size: 0.75rem; }
}

/* ---- Small mobile: ≤ 479px ---- */
@media (max-width: 479px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .hero-slogan { font-size: 1.55rem; }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-quote { display: none; }

  .menu-item-name { font-size: 0.92rem; }
  .menu-item-price { font-size: 0.92rem; }
}
