/* ========================================
   LA PALMA CAFÉ — STYLESHEET
   Greek Mediterranean Theme
   Colors: Teal #2a8fa3 | Amber #e8a84b | White #ffffff | Cream #f5f0dc
   ======================================== */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #2a8fa3;
  --teal-dark: #1a6b7a;
  --teal-light: #4dbdd6;
  --amber: #e8a84b;
  --amber-dark: #c47a20;
  --amber-light: #f0c07a;
  --white: #ffffff;
  --cream: #f5f0dc;
  --cream-dark: #ede4c8;
  --text-dark: #1c3a42;
  --text-mid: #3a6270;
  --text-light: #6a9aab;
  --shadow-sm: 0 2px 12px rgba(42, 143, 163, 0.12);
  --shadow-md: 0 8px 32px rgba(42, 143, 163, 0.18);
  --shadow-lg: 0 20px 60px rgba(42, 143, 163, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  /* use hidden only on body, not clip */
}

.greek-top-ornament {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: absolute;
  top: 15%;
  left: 0;
  display: flex;
  justify-content: center;
}

.greek-top-ornament svg {
  max-width: 100%;
}

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

ul {
  list-style: none;
}

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

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

.accent {
  color: var(--teal);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--teal-light);
  border-radius: 4px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 220, 0.0);
  backdrop-filter: blur(0px);
  transition: var(--transition);
  padding: 16px 0;
}

.navbar.scrolled {
  background: rgba(245, 240, 220, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(42, 143, 163, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(42, 143, 163, 0.25));
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.05);
}

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

.nav-link {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 36px);
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-scroll-wrapper {
  position: relative;
  height: 300vh;
  /* Scroll distance for the animation to play */
  width: 100%;
}

.hero {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── Hero Canvas Background ── */
.hero-canvas-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  /* Fallback background */
}

#hero-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-canvas-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Hero Content (text over scene) ── */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 480px;
  animation: fadeSlideUp 0.9s ease both;
}

.hero-logo {
  display: none;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.2));
}

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 220, 120, 0.95);
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.hero-title .accent {
  font-style: italic;
  background: linear-gradient(135deg, #ffd75e, #f0a820);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
  line-height: 1.65;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(42, 143, 163, 0.45), 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(42, 143, 163, 0.55), 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 10;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  margin: 0 auto;
}

.scroll-dot::before,
.scroll-dot::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  margin-top: 4px;
}

.scroll-dot::after {
  background: rgba(255, 255, 255, 0.2);
  margin-top: 4px;

}

/* ========================================
   GREEK MEANDER BORDER
   ======================================== */
.meander-border {
  height: 20px;
  background-image: repeating-linear-gradient(90deg,
      var(--teal) 0px, var(--teal) 6px,
      transparent 6px, transparent 8px,
      var(--teal) 8px, var(--teal) 14px,
      transparent 14px, transparent 16px,
      var(--teal) 16px, var(--teal) 20px,
      transparent 20px, transparent 22px);
  opacity: 0.18;
  width: 100%;
}

.top-meander {
  margin-bottom: 0;
}

.bottom-meander {
  margin-top: 0;
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu-section {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 80% 20%, rgba(42, 143, 163, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(232, 168, 75, 0.15) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(42, 143, 163, 0.04) 0px, rgba(42, 143, 163, 0.04) 1px, transparent 1px, transparent 15px);
  padding: 80px 0;
  position: relative;
  overflow: visible !important;
  /* REQUIRED for sticky card-stack to work */
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.title-ornament {
  width: 200px;
  margin: 10px auto 0;
}

.title-ornament svg {
  width: 100%;
  height: auto;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  background: white;
  border: 2px solid var(--cream-dark);
  border-radius: 50px;
  padding: 9px 20px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(42, 143, 163, 0.05);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 20px rgba(42, 143, 163, 0.3);
  transform: translateY(-2px);
}

/* Menu Grid */
.category-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--teal-dark);
  margin-top: 64px;
  margin-bottom: 24px;
  border-bottom: 2px dashed rgba(42, 143, 163, 0.2);
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.category-heading span {
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  color: var(--amber-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

/* Menu Item Card */
.menu-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(42, 143, 163, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.5s ease forwards;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal), var(--teal-light));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42, 143, 163, 0.2);
}

.menu-item:hover::before {
  opacity: 1;
}

/* Featured item */
.menu-item.featured {
  background: linear-gradient(135deg, rgba(42, 143, 163, 0.06) 0%, rgba(232, 168, 75, 0.06) 100%);
  border-color: rgba(232, 168, 75, 0.35);
}

.menu-item.featured::before {
  background: linear-gradient(180deg, var(--amber), var(--amber-dark));
  opacity: 1;
}

.featured-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 50px;
}

.item-emoji {
  font-size: 2rem;
  min-width: 44px;
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.item-info {
  flex: 1;
}

.item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.item-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}

.currency {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

/* Hidden items (filtered) */
.menu-item.hidden {
  display: none;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  background: linear-gradient(180deg, #e8f7fa 0%, var(--cream) 100%);
  padding: 100px 0;
}

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

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: floatIllustration 7s ease-in-out infinite;
}

.about-svg {
  width: 100%;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--amber);
  color: white;
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(232, 168, 75, 0.4);
}

.about-description {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-description strong {
  color: var(--teal);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 1.6rem;
  min-width: 40px;
  text-align: center;
}

.feature-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  background: var(--cream);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(42, 143, 163, 0.1);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42, 143, 163, 0.25);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--teal);
}

.contact-svg {
  width: 48px;
  height: 48px;
  stroke: var(--teal);
  stroke-width: 1.5px;
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px dashed var(--cream-dark);
  padding-bottom: 8px;
  gap: 12px;
}

.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-list li span:first-child {
  font-weight: 700;
  color: var(--text-dark);
}

.contact-detail {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.social-links,
.location-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 24px;
  border: 2px solid var(--teal);
  border-radius: 50px;
  transition: var(--transition);
  width: auto;
  min-width: 160px;
  justify-content: center;
  white-space: nowrap;
}

#directions-btn {
  width: 100%;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--teal);
  color: white;
  transform: scale(1.04);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--teal-dark);
  padding: 48px 0;
}

.footer-content {
  text-align: center;
}

.footer-logo-img {
  height: 80px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-style: italic;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(42, 143, 163, 0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(42, 143, 163, 0.5);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatBlob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

@keyframes floatIllustration {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Item enter animation */
.menu-item.entering {
  animation: itemEnter 0.4s ease forwards;
}

@keyframes itemEnter {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(16px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 14px;
    width: 100%;
    max-width: 100%;
  }

  .navbar {
    padding: 8px 0;
  }

  .nav-container {
    padding: 0 14px;
  }

  .logo-img {
    height: 44px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(245, 240, 220, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(42, 143, 163, 0.15);
    border-bottom: 2px solid var(--teal);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */

  .hero-content {
    padding: 0 14px;
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    display: none;
  }

  .hero-tagline {
    display: none;
  }

  .hero-logo {
    display: block;
  }

  .santorini-illustration {
    max-width: 240px;
  }

  /* Menu */
  .menu-section {
    padding: 40px 0;
    overflow-x: hidden;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-item {
    padding: 14px 12px;
    gap: 12px;
  }

  .item-emoji {
    font-size: 1.5rem;
    min-width: 34px;
  }

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

  .item-desc {
    font-size: 0.76rem;
  }

  .item-price {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  /* Category tabs — scroll horizontally within their container */
  .category-tabs {
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    font-size: 0.72rem;
    padding: 7px 13px;
    flex-shrink: 0;
  }

  /* Section titles */
  .section-title {
    font-size: 1.7rem;
  }

  /* About */
  .about-section {
    padding: 40px 0;
    overflow-x: hidden;
  }

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

  .about-img-wrapper {
    max-width: 100%;
  }

  .about-description {
    font-size: 0.92rem;
  }

  /* Contact */
  .contact-section {
    padding: 40px 0;
    overflow-x: hidden;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 32px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .hours-list li {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
  }

  .social-link {
    width: 140px;
    font-size: 0.88rem;
  }

  /* Footer */
  .footer {
    padding: 32px 0;
  }

  .footer-logo-img {
    height: 60px;
  }
}

/* Staggered entrance for menu items when filtering */
.menu-grid .menu-item:nth-child(1) {
  animation-delay: 0.02s;
}

.menu-grid .menu-item:nth-child(2) {
  animation-delay: 0.04s;
}

.menu-grid .menu-item:nth-child(3) {
  animation-delay: 0.06s;
}

.menu-grid .menu-item:nth-child(4) {
  animation-delay: 0.08s;
}

.menu-grid .menu-item:nth-child(5) {
  animation-delay: 0.10s;
}

.menu-grid .menu-item:nth-child(6) {
  animation-delay: 0.12s;
}

.menu-grid .menu-item:nth-child(7) {
  animation-delay: 0.14s;
}

.menu-grid .menu-item:nth-child(8) {
  animation-delay: 0.16s;
}