/* Styles for Playland Lounge — Beginner-friendly, well-commented
   Colors and fonts match the design spec exactly.
*/

/* -------------------------
   Design tokens (variables)
   ------------------------- */
:root {
  --bg: #0d0d0d; /* Midnight Black */
  --deep: #1a1a1a; /* Deep Charcoal */
  --gold: #c8a94b; /* Gold Accent */
  --amber: #d4a373; /* Warm Amber */
  --white: #f2f2f2; /* Soft White */
  --max-width: 1100px;
  --container-pad: 1.25rem;
  --radius: 12px;
  --transition: 280ms ease;
  --ff-heading: "Montserrat", sans-serif;
  --ff-body: "Poppins", sans-serif;
}
html, body {
  overflow-x: hidden;
}

main,
section,
.site-footer {
  position: relative;
  z-index: 1;
}


/* -------------------------
   Global & Reset
   ------------------------- */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  font-size: 16px;
}

/* Accessible focus outline +
   Skip link visible when focused */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--white);
  color: var(--bg);
  padding: 0.5rem 0.75rem;
  z-index: 9999;
  border-radius: 6px;
}

/* -------------------------
   Container
   ------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.logo {
  width: 60px;
  height: auto;
}


/* -------------------------
   Header / Nav
   ------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.9),
    rgba(13, 13, 13, 0.6)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

/* Nav list for desktop */
.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--ff-body);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.main-nav a:focus,
.main-nav a:hover {
  color: var(--gold);
  outline: none;
}

/* Mobile nav toggle (simple) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
}

/* -------------------------
   Hero
   ------------------------- */
.hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  margin-bottom: 1.75rem;
}

/* Hero image wrapper - covers the left/top and provides slow zoom */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-image {
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform-origin: center;
  /* Smooth slow-zoom */
  transition: transform 18s ease;
  will-change: transform;
  filter: brightness(0.45) saturate(0.9);
}
.hero:hover .hero-image {
  transform: scale(1.05);
} /* subtle hover for pointer users */

/* Hero content sits on top */
.hero-content {
  max-width: 90%; /* responsive width */
  padding: 0 1rem; /* relative padding */
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-title {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  margin: 0;
  letter-spacing: 0.02em;
}
.hero-sub {
  margin: 0;
  color: rgba(242, 242, 242, 0.9);
  max-width: 60ch;
}
.hero-ctas {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--ff-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn.primary {
  background: var(--gold);
  color: var(--bg);
}
.btn.primary:focus,
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}
.btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(242, 242, 242, 0.06);
}
.btn.ghost:hover {
  color: var(--gold);
}

/* -------------------------
   Sections common
   ------------------------- */
.section {
  padding: 2.25rem 0;
}
.section h2 {
  font-family: var(--ff-heading);
  color: var(--white);
  margin: 0 0 0.6rem 0;
  font-size: 1.5rem;
}
.muted {
  color: rgba(242, 242, 242, 0.8);
  margin-bottom: 1rem;
}

/* About layout: image + text */
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.about-image{
  margin-bottom: 0px;
}
/* Menu grid */
.menu-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}
.menu-item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.001)
  );
  border-radius: 10px;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}
.menu-item img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Events list */
.events-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.event-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.event-item img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

/* Contact grid */
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.contact-card {
  background: var(--deep);
  padding: 1rem;
  border-radius: 10px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--white);
  font-family: var(--ff-body);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1rem 0;
  margin-top: 2rem;
  color: rgba(242, 242, 242, 0.8);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

/* Small helper */
.price {
  font-weight: 600;
  font-family: var(--ff-body);
  color: var(--gold);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* -------------------------
   Animations & reveal (Intersection Observer)
   ------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.9, 0.32, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 639px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* CSS-only fallback for browsers without JS:
   elements will still be visible (no scroll reveal) */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* -------------------------
   Responsive breakpoints (mobile / tablet / desktop)
   ------------------------- */

/* Tablet */
@media (min-width: 640px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
  }
  .hero {
    min-height: 72vh;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .header-inner {
    padding: 1rem 0;
  }
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-content {
    padding-left: 2rem;
    max-width: 640px;
  }
  .nav-toggle {
    display: none;
  }
  .main-nav .nav-list {
    gap: 1.25rem;
  }
}

/* Mobile-specific tweaks */
@media (max-width: 639px) {
  .nav-toggle {
    display: inline-block;
  }
  .main-nav .nav-list {
    display: none;
    position: absolute;
    right: 1rem;
    top: 64px;
    background: var(--deep);
    padding: 0.75rem;
    border-radius: 8px;
  }
  .main-nav .nav-list.open {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-image {
    transition: transform 14s ease;
    width: 100%;
    height: 100%;
  }
}

/* Accessibility: High-contrast focus ring */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(200, 169, 75, 0.3);
  outline-offset: 3px;
  border-radius: 6px;
}

html {
  scroll-behavior: smooth;
}

/* Header scroll shadow effect */
.site-header.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  background: rgba(13, 13, 13, 0.95);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Button hover & press effects */
.btn.primary:hover {
  background-color: var(--gold);
  filter: brightness(1.15);
  transform: translateY(-2px);
}
.btn.primary:active {
  transform: translateY(1px);
  filter: brightness(0.9);
}

/* Ghost buttons subtle glow */
.btn.ghost:hover {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(200, 169, 75, 0.3);
  transition: box-shadow 0.3s ease, color 0.3s ease;
}

/* Gallery hover zoom & fade */
.gallery-grid img {
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Menu card hover pop */
.menu-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

/* Reveal animation smoother fade-in */
.reveal {
  transition: opacity 700ms ease-out,
    transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* Mobile nav improvements */
@media (max-width: 639px) {
  .nav-toggle {
    position: relative;
    z-index: 999;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .main-nav .nav-list {
    transition: all 0.4s ease;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
  }

  .main-nav .nav-list.open {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  /* Animate hamburger icon */
  .nav-toggle.active {
    background: var(--gold);
    color: var(--bg);
  }

  /* Mobile hero adjustments */
  .hero-content {
    padding: 0rem 1rem;
    max-width: 90%;
   margin: 0 auto;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 1.1rem;
  }

  /* Better spacing in sections */
  .section {
    padding: 2rem 1rem;
  }

  /* Gallery grid adaptive rows */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 150px;
  }

  /* Menu items stack cleaner */
  .menu-grid {
      grid-template-columns: 1fr;
  }

  /* Buttons full-width on mobile */
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Tablet refinements */
@media (min-width: 640px) and (max-width: 1023px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section {
    padding: 3rem 2rem;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer social hover */
.footer-social a:hover {
  color: #fff;
  transform: scale(1.15);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hero title + subtitle fade/slide */
.hero-title {
  animation: fadeSlideUp 1.2s ease-out both;
}
.hero-sub {
  animation: fadeSlideUp 1.6s ease-out both;
}

/* Hero buttons appear with stagger */
.hero-ctas a:nth-child(1) {
  animation: fadeSlideUp 1.9s ease-out both;
}
.hero-ctas a:nth-child(2) {
  animation: fadeSlideUp 2.1s ease-out both;
}

/* About section image fade-in from right */
.about-image img {
  animation: fadeInRight 1s ease-out both;
}

/* Menu items gentle rise on load */
.menu-item {
  animation: fadeSlideUp 1.3s ease-out both;
  animation-delay: calc(var(--order, 0) * 0.1s);
}

/* Gallery images zoom-fade */
.gallery-grid img {
  animation: zoomFade 1.2s ease-out both;
}

/* Events section text fade-in */
#events h2,
#events p,
#events button {
  animation: fadeSlideUp 1.2s ease-out both;
}

/* Contact details fade from left */
.contact-details {
  animation: fadeInLeft 1.2s ease-out both;
}

/* Footer soft fade */
.site-footer {
  animation: fadeIn 1.4s ease-out both;
}

/* ----------- Keyframes ----------- */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomFade {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ----------- Hover Enhancements ----------- */
.hero:hover .hero-title {
  animation: pulseGlow 2.5s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }
  100% {
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  }
}

/* Add soft shimmer on buttons */
.btn.primary:hover {
  background-image: linear-gradient(
    90deg,
    var(--gold) 0%,
    #ffe8a1 50%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  animation: shimmer 1.8s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
/* Prevent menu overlay from blocking clicks when closed */
.main-nav .nav-list {
  pointer-events: none;
}
.main-nav .nav-list.open {
  pointer-events: all;
}

/* Add slight backdrop blur when open (optional aesthetic) */
.main-nav .nav-list.open {
  backdrop-filter: blur(10px);
}

@media (max-width: 639px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 5;
  }
}


  @keyframes fadeInBackdrop {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /* Sleek slide-in side panel */
  .main-nav .nav-list {
    position: fixed;
    top: 0;
    right: 0.75rem; /* small space from edge for elegant look */
    height: 92vh;
    width: 72%;
    max-width: 290px;
    background: rgba(18, 18, 18, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px 0 0 16px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.55),
      0 0 12px rgba(200, 169, 75, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.75rem 2rem;
    gap: 1.4rem;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.4s ease;
    z-index: 20;
    pointer-events: none;
    backdrop-filter: blur(14px);
  }

  .main-nav .nav-list.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  /* Navigation links */
  .main-nav .nav-list a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .main-nav .nav-list a:hover {
    color: var(--gold);
    transform: translateX(4px);
  }

  /* Fade-in animation for each link */
  .main-nav .nav-list.open a {
    opacity: 0;
    animation: fadeSlideIn 0.5s ease forwards;
  }
  .main-nav .nav-list.open a:nth-child(1) {
    animation-delay: 0.1s;
  }
  .main-nav .nav-list.open a:nth-child(2) {
    animation-delay: 0.2s;
  }
  .main-nav .nav-list.open a:nth-child(3) {
    animation-delay: 0.3s;
  }
  .main-nav .nav-list.open a:nth-child(4) {
    animation-delay: 0.4s;
  }
  .main-nav .nav-list.open a:nth-child(5) {
    animation-delay: 0.5s;
  }
  .main-nav .nav-list.open a:nth-child(6) {
    animation-delay: 0.6s;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateX(15px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Hamburger toggle */
  .nav-toggle {
    position: relative;
    z-index: 10000;
    background: var(--gold);
    color: var(--bg);
    border: none;
    border-radius: 8px;
    padding: 0.45rem 0.8rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .nav-toggle:hover {
    background: #e2c76e;
    transform: translateY(-2px);
  }

  .nav-toggle.active {
    background: var(--white);
    color: var(--bg);
  }
/* === Polished, animated mobile nav (Playland Lounge) === */
@media (max-width: 639px) {
  /* Dimmed backdrop behind menu */
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    z-index: 10;
    animation: fadeInBackdrop 0.5s ease forwards;
  }

  @keyframes fadeInBackdrop {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /* Sleek slide-in glass panel with bounce */
  .main-nav .nav-list {
    position: fixed !important;
    top: 0;
    right: 0;
    height: 100vh;
    width: 72%;
    max-width: 300px;
    background: rgba(20, 20, 20, 0.93);
    border-left: 2px solid rgba(200, 169, 75, 0.25);
    border-radius: 20px 0 0 20px;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.6),
      0 0 20px rgba(200, 169, 75, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.4rem;
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.6s cubic-bezier(0.22, 1.2, 0.36, 1),
      opacity 0.5s ease;
    backdrop-filter: blur(18px);
  }

  .main-nav .nav-list.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
    animation: menuBounce 0.6s ease-out forwards;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.5),
      0 0 25px rgba(200, 169, 75, 0.25);
  }

  @keyframes menuBounce {
    0% {
      transform: translateX(120%);
    }
    70% {
      transform: translateX(-5%);
    }
    100% {
      transform: translateX(0);
    }
  }

  /* Links styling */
  .main-nav .nav-list a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    position: relative;
  }

  /* Gold underline hover */
  .main-nav .nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .main-nav .nav-list a:hover::after {
    width: 100%;
  }

  /* Animate links one by one */
  .main-nav .nav-list.open a {
    opacity: 0;
    animation: fadeSlideIn 0.5s ease forwards;
  }
  .main-nav .nav-list.open a:nth-child(1) {
    animation-delay: 0.1s;
  }
  .main-nav .nav-list.open a:nth-child(2) {
    animation-delay: 0.2s;
  }
  .main-nav .nav-list.open a:nth-child(3) {
    animation-delay: 0.3s;
  }
  .main-nav .nav-list.open a:nth-child(4) {
    animation-delay: 0.4s;
  }
  .main-nav .nav-list.open a:nth-child(5) {
    animation-delay: 0.5s;
  }
  .main-nav .nav-list.open a:nth-child(6) {
    animation-delay: 0.6s;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Toggle button stays visible and styled */
  .nav-toggle {
    position: relative;
    z-index: 10000;
    background: var(--gold);
    color: var(--bg);
    border: none;
    border-radius: 8px;
    padding: 0.45rem 0.8rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .nav-toggle:hover {
    background: #e2c76e;
    transform: translateY(-2px);
  }
}

body {
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}
/* Tablet */
@media (min-width: 640px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.menu {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0;
}

.menu-title {
  font-size: 1.5rem;
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 25px;
}

.menu-grid {
  display: grid;
  gap: 15px;
}

/* CARD */
.menu-card {
  text-align: center;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* MOBILE: exactly like your screenshot */
@media (max-width: 639px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* TABLET */
@media (min-width: 640px) and (max-width: 1023px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
