/*
 * CL Caterers — Stylesheet
 * Theme: Modern English Garden Party
 * Palette: Forest Green (#1E3A2F) | Blush Rose (#E8A4A4) | Gold (#C9A84C) | Off-White (#FDFBF7)
 * Fonts: Cormorant Garamond (headings) | DM Sans (body)
 *
 * File structure:
 *   1. Reset & Base
 *   2. Typography
 *   3. Utilities
 *   4. Animations
 *   5. Navbar
 *   6. Hero
 *   7. Sections (shared)
 *   8. About
 *   9. Menus
 *  10. Bespoke
 *  11. Gallery & Lightbox
 *  12. Contact
 *  13. Footer
 *  14. Responsive
 */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: #FDFBF7;
  color: #1E3A2F;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ─────────────────────────────────────────────
   2. TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: #1E3A2F;
  margin-bottom: 0.4rem;
}

h2 em {
  font-style: italic;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E3A2F;
  margin-bottom: 0.4rem;
}

.h2-light {
  color: #fff;
}

.label-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.75rem;
}

.label-tag-light {
  color: #C9A84C;
}

.body-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #3a5a4a;
  margin-bottom: 1rem;
}

/* ─────────────────────────────────────────────
   3. UTILITIES
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.gold-rule {
  display: block;
  width: 4rem;
  height: 2px;
  background: #C9A84C;
  margin: 1rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: none;
  transition: background 0.2s ease, transform 0.16s ease, border-color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: #1E3A2F;
  color: #fff;
}

.btn-primary:hover {
  background: #2e5444;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-gold {
  background: #C9A84C;
  color: #fff;
  margin-top: 2rem;
}

.btn-gold:hover {
  background: #b8963e;
}

/* Two-column grid */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-reverse {
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

/* Event tags */
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.event-tags span {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #1E3A2F;
  background: #F0EDE6;
  border: 1px solid #d4cfc5;
  padding: 0.3rem 0.8rem;
}

/* ─────────────────────────────────────────────
   4. ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

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

/* Hero entrance animations */
.fade-hero {
  opacity: 0;
  animation: fadeSlideUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Scroll-triggered fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* Stagger children */
.stagger .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger .fade-up:nth-child(2) { transition-delay: 60ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 120ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 180ms; }
.stagger .fade-up:nth-child(5) { transition-delay: 240ms; }
.stagger .fade-up:nth-child(6) { transition-delay: 300ms; }
.stagger .fade-up:nth-child(7) { transition-delay: 360ms; }
.stagger .fade-up:nth-child(8) { transition-delay: 420ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-hero {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* ─────────────────────────────────────────────
   5. NAVBAR
───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: rgba(253, 251, 247, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(30, 58, 47, 0.1);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .nav-inner {
    padding: 1rem 2rem;
  }
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-cl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  line-height: 1;
  transition: color 0.3s;
}

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

#navbar.scrolled .logo-cl {
  color: #1E3A2F;
}

#navbar.scrolled .logo-text {
  color: #5a7a6a;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A84C;
  transition: width 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links a:hover::after {
  width: 100%;
}

#navbar.scrolled .nav-links a {
  color: #1E3A2F;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

#navbar.scrolled .nav-hamburger span {
  background: #1E3A2F;
}

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

/* Mobile menu */
.nav-mobile {
  display: none;
  background: #FDFBF7;
  border-top: 1px solid #ddd8cf;
  padding: 1rem 1.5rem;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1E3A2F;
  padding: 0.6rem 0;
  border-bottom: 1px solid #ece8e0;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/cl_hero.jpg');
  background-size: cover;
  background-position: center;
  animation: kenBurns 18s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 40, 28, 0.75) 0%,
    rgba(18, 40, 28, 0.35) 55%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-location {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: #f0c0c0;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  transition: color 0.2s;
}

.hero-scroll:hover {
  color: rgba(255,255,255,0.9);
}

/* ─────────────────────────────────────────────
   7. SECTIONS (shared)
───────────────────────────────────────────── */
.section {
  padding: 7rem 0;
}

.section-cream {
  background: #FDFBF7;
}

.section-offwhite {
  background: #F4F0E8;
}

.section-green {
  background: #1E3A2F;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .label-tag {
  display: block;
}

.section-header .gold-rule {
  margin: 1rem auto;
}

/* ─────────────────────────────────────────────
   8. ABOUT
───────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
}

.img-border-accent {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 2px solid #C9A84C;
  z-index: 0;
  pointer-events: none;
}

.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(30, 58, 47, 0.15);
}

/* ─────────────────────────────────────────────
   9. MENUS
───────────────────────────────────────────── */
.menu-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(30, 58, 47, 0.15);
}

.menu-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1E3A2F;
}

.menu-card {
  background: #fff;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(30, 58, 47, 0.07);
}

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

.menu-list li {
  padding-bottom: 0.875rem;
  margin-bottom: 0.875rem;
  border-bottom: 1px solid #f0ece4;
}

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

.menu-list strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1E3A2F;
  margin-bottom: 0.15rem;
}

.menu-list em {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: #5a7a6a;
  line-height: 1.5;
}

.extras-block {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 2px solid rgba(201, 168, 76, 0.3);
}

.extras-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.75rem;
}

.extra-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.extra-item:last-child {
  margin-bottom: 0;
}

.extra-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1E3A2F;
  margin-bottom: 0.15rem;
}

.extra-item em {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  color: #5a7a6a;
}

.extra-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #C9A84C;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   10. BESPOKE
───────────────────────────────────────────── */
.bespoke-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.bespoke-inner .gold-rule {
  margin: 1rem auto;
}

.bespoke-intro {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.bespoke-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 0.5rem;
}

.bespoke-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.75rem 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}

.bespoke-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201, 168, 76, 0.4);
}

.bespoke-icon {
  color: #C9A84C;
  margin-bottom: 1rem;
}

.bespoke-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.bespoke-card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

/* ─────────────────────────────────────────────
   11. GALLERY & LIGHTBOX
───────────────────────────────────────────── */
.section-gallery {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.gallery-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/cl_gallery_bg.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
  z-index: 0;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 40, 28, 0.6);
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem;
  transition: color 0.2s;
  z-index: 2;
}

.lightbox-close:hover {
  color: #fff;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.lightbox-prev:active { transform: translateY(-50%) scale(0.93); }
.lightbox-next:active { transform: translateY(-50%) scale(0.93); }

.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

/* Fade transition for lightbox image swap */
#lightboxImg {
  transition: opacity 0.2s ease;
}

#lightboxImg.fading {
  opacity: 0;
}

/* ─────────────────────────────────────────────
   12. CONTACT
───────────────────────────────────────────── */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #1E3A2F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.1rem;
}

.contact-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1E3A2F;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-number:hover {
  color: #C9A84C;
}

.contact-area {
  font-size: 0.95rem;
  font-weight: 400;
  color: #3a5a4a;
  line-height: 1.6;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a7a6a;
}

.form-group input,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #1E3A2F;
  background: #fff;
  border: 1px solid #d4cfc5;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1E3A2F;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0b0a8;
}

.form-success {
  background: #1E3A2F;
  padding: 3rem 2rem;
  text-align: center;
}

.form-success h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}

/* ─────────────────────────────────────────────
   13. FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: #122820;
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-rule {
  width: 3rem;
  height: 1px;
  background: rgba(201, 168, 76, 0.4);
}

.footer-copy {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}

/* ─────────────────────────────────────────────
   14. RESPONSIVE
───────────────────────────────────────────── */

/* Tablet and below: stack two-col grids */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .two-col-reverse {
    direction: ltr;
  }

  .about-img-wrap {
    margin-top: 1.5rem;
  }

  .img-border-accent {
    top: -1rem;
    left: -1rem;
    right: 1rem;
    bottom: 1rem;
  }

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

/* Mobile */
@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .menu-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
