/* =========================================================
   Styles.css (FULL FIXED) — Mila Mirissa
   FIX:
   ✅ Footer bg = Hero bg (same)
   ✅ Drinks/Food card size = Hero/Footer size (same width + radius)
   ✅ Drinks/Food card background = Hero/Footer background (same)
   ✅ Clean section spacing, no big gaps
   ✅ FULL MOBILE OPTIMIZED (no horizontal scroll, clean stacking)
   ✅ FOOTER MOBILE matches your screenshots (stack + statement block bottom + button arrow circle)
========================================================= */

/* =========================
   VARIABLES
========================= */
:root {
  --bg: #FBF3D6;
  --card: #F6EBC6;             /* HERO + FOOTER + MENU CARDS */
  --green: #0B3B2E;
  --greenDark: #072B22;

  --forest-green: #0B3B2E;
  --dark-green: #1A4A3A;
  --text-green: #1A4A3A;

  --pill: rgba(11, 59, 46, 0.08);
  --white: #FFFFFF;
  --shadow: rgba(11, 59, 46, 0.04);
  --transition: all 0.3s ease;

  --cream-bg: #FDF8F0;
  --color-offwhite: #FFFCF5;
  --color-dark-overlay: rgba(0, 0, 0, 0.4);
  --color-text-light: #F5F1EA;

  --transition-duration: 0.8s;

  /* shared radius + spacing */
  --border-radius: 32px;
  --soft-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);

  /* extra vars used by other sections */
  --radius-container: 32px;
  --radius-pill: 20px;
  --shadow-container: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-pill: 0 6px 20px rgba(0, 0, 0, 0.07);
  --sage-green: #e8f1e1;
  --deep-green: #0B3B2E;
  --overlay: rgba(0, 0, 0, 0.45);

  /* helper vars */
  --deep-green-light: #2c5545;
  --container-padding: 24px;

  /* layout system (MATCH HERO + FOOTER) */
  --shell-width: 94vw;
  --shell-max: 1400px;
  --shell-radius: 32px;
  --shell-padding: 30px 40px;   /* matches hero card */
  --section-pad: 18px 20px;     /* outer spacing */
  --menu-gap: 64px;

  --heading-font: 'Bebas Neue', 'Oswald', sans-serif;
  --body-font: 'Inter', sans-serif;
}

/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  background-color: var(--bg);
  color: var(--green);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* helper container used in your HTML */
.container {
  width: var(--shell-width);
  max-width: var(--shell-max);
  margin: 0 auto;
}

/* =========================
   COMMON COMPONENTS
========================= */
.home-button {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.home-button:hover {
  opacity: 0.85;
}

.logo.home-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
}

.logo-mark img {
  height: 24px;
  width: auto;
  display: block;
}

/* =========================
   HERO SECTION (ABOUT / MENU)
========================= */
.hero-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--section-pad);
  min-height: 80vh;
  height: 100%;
}

.card-container {
  background-color: var(--card);
  margin-top: 0;
  border-radius: var(--shell-radius);
  padding: var(--shell-padding);
  height: 90vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px var(--shadow);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: var(--shell-max);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--green);
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-pills {
  display: flex;
  background-color: var(--pill);
  border-radius: 100px;
  padding: 6px;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: var(--green);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: rgba(11, 59, 46, 0.12);
}

.nav-link.active {
  background-color: var(--greenDark);
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.phone-link:hover {
  color: var(--greenDark);
}

.cart-pill {
  background-color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cart-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.cart-count {
  background-color: var(--greenDark);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

/* HERO CENTER */
.about-hero-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 100%;
}

.about-hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-align: center;
}

/* HERO BOTTOM */
.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}

.tagline p,
.address p {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--green);
}

.about-hero-tagline p {
  max-width: 560px;
}

.about-hero-address {
  text-align: right;
  font-style: normal;
  max-width: 440px;
}

/* =========================================================
   SECTION SPACING (NO BIG GAPS)
========================================================= */
.drinks-section,
.food-section,
.footer-hero {
  width: 100%;
  margin: 0;
  padding: var(--section-pad);
  background-color: transparent; /* keep body bg */
}

section {
  scroll-margin-top: 90px;
}

/* =========================================================
   DRINKS + FOOD CARDS (MATCH HERO + FOOTER SIZE/SYSTEM)
========================================================= */
.drinks-container,
.food-container {
  width: var(--shell-width);
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0;
}

.drinks-card,
.food-card {
  background-color: var(--white);
  border-radius: var(--shell-radius);
  padding: var(--shell-padding);
  box-shadow: 0 8px 32px var(--shadow);
  margin: 0;
  width: 100%;
}

/* shared grids */
.drinks-grid,
.food-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--menu-gap);
  align-items: start;
  position: relative;
}

/* =========================
   DRINKS LEFT
========================= */
.drinks-left {
  padding-right: 24px;
  max-height: 800px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--deep-green-light) transparent;
}

.drinks-left::-webkit-scrollbar {
  width: 6px;
}

.drinks-left::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.drinks-left::-webkit-scrollbar-thumb {
  background: var(--deep-green-light);
  border-radius: 10px;
}

.drinks-heading {
  font-family: var(--heading-font);
  font-size: clamp(56px, 8vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--deep-green);
  font-weight: 600;

  position: sticky;
  top: 0;
  z-index: 10;

  background: var(--white);
  padding: 12px 0 16px 0;
}

.drinks-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.drink-category {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26, 59, 46, 0.12);
  margin-bottom: 16px;
}

.drink-category:last-child {
  border-bottom: none;
}

.drink-category-title {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-green);
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  word-break: break-word;
}

.drink-category-note {
  font-family: var(--body-font);
  font-size: 14px;
  font-style: italic;
  color: var(--deep-green-light);
  margin: -8px 0 16px 0;
}

.drink-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.drink-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
  gap: 16px;
  flex-wrap: wrap;
}

.drink-name {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--deep-green);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.4;
  word-break: break-word;
}

.drink-price {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--deep-green-light);
  white-space: nowrap;
}

.drink-description {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--deep-green-light);
  margin: 0;
  max-width: 420px;
  opacity: 0.85;
}

.drinks-list-spacer {
  height: 60px;
  width: 100%;
}

/* DRINKS RIGHT */
.drinks-right {
  position: relative;
  width: 100%;
  height: 100%;
  align-self: start;
}

.drinks-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  will-change: transform, opacity;
}

.drinks-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.drinks-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.05);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.drinks-image.active {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.1s;
}

/* =========================
   FOOD LEFT
========================= */
.food-left {
  padding-right: 24px;
  max-height: 800px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--deep-green-light) transparent;
}

.food-left::-webkit-scrollbar {
  width: 6px;
}

.food-left::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.food-left::-webkit-scrollbar-thumb {
  background: var(--deep-green-light);
  border-radius: 10px;
}

.food-heading {
  position: sticky;
  top: 0;
  z-index: 10;

  background: var(--white);
  padding: 12px 0 16px 0;

  font-family: var(--heading-font);
  font-size: clamp(56px, 8vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--deep-green);
  font-weight: 600;
}

.food-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.food-category {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26, 59, 46, 0.12);
  margin-bottom: 16px;
}

.food-category:last-child {
  border-bottom: none;
}

.food-category-title {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-green);
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  word-break: break-word;
}

.food-subtitle {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-green);
  margin: 6px 0 10px 0;
  opacity: 0.9;
}

.food-note {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--deep-green-light);
  opacity: 0.85;
  margin-top: -6px;
}

.food-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.food-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
  gap: 16px;
  flex-wrap: wrap;
}

.food-name {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--deep-green);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.4;
  word-break: break-word;
}

.food-price {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--deep-green-light);
  white-space: nowrap;
}

.food-description {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--deep-green-light);
  margin: 0;
  max-width: 420px;
  opacity: 0.85;
}

.food-list-spacer {
  height: 60px;
  width: 100%;
}

/* FOOD RIGHT */
.food-right {
  position: relative;
  width: 100%;
  height: 100%;
  align-self: start;
}

.food-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  will-change: transform, opacity;
}

.food-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.food-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.05);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.food-image.active {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.1s;
}

/* =========================
   FOOTER (MATCH HERO BG + SIZE)
========================= */
.footer-hero {
  background-color: transparent;
}

.footer-shell {
  width: var(--shell-width);
  max-width: var(--shell-max);
  margin: 0 auto;
  background-color: var(--card);
  border-radius: var(--shell-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}

.footer-top {
  padding: var(--shell-padding);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(30px, 4vw, 50px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.column-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--deep-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: clamp(20px, 2.5vw, 30px);
  position: relative;
}

.column-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--deep-green);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--deep-green);
  line-height: 1.5;
  font-weight: 400;
}

.big-statement {
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--deep-green);
  line-height: 1.3;
  margin-bottom: clamp(25px, 3vw, 35px);
  max-width: 300px;
  word-break: break-word;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-buttons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background-color: var(--deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: #0f2c25;
  transform: translateY(-2px);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--deep-green);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.1vw, 16px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--deep-green);
  transition: var(--transition);
}

.menu-btn:hover {
  background-color: var(--deep-green);
  color: #fff;
}

/* arrow circle inside menu button */
.btn-circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(11, 59, 46, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.menu-btn {
  gap: 14px;
  padding: 14px 22px;
}

.menu-btn:hover .btn-circle {
  background: rgba(255, 255, 255, 0.18);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-nav .nav-link {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--deep-green);
  text-decoration: none;
  transition: var(--transition);
  padding: 0;
  display: inline-block;
}

.footer-nav .nav-link:hover {
  color: #0f2c25;
  transform: translateX(4px);
}

.footer-nav .nav-link.active {
  background-color: var(--deep-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
}

/* ===== FOOTER HUGE TEXT ===== */
.footer-bottom {
  margin-top: clamp(30px, 4vw, 50px);
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(220px, 28vw, 420px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(30px, 5vw, 70px);
}

.huge-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(150px, 22vw, 520px);
  color: var(--deep-green);
  line-height: 0.72;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  animation: none;
}

.huge-text .marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: footerMarquee 50s linear infinite;
}

.huge-text .marquee-track + .marquee-track {
  margin-left: 2.2rem;
}

.marquee-logo {
  height: 0.66em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.35em;
  transform: translateY(-0.03em);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

@keyframes footerMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* =========================
   MOBILE MENU
========================= */

/* HAMBURGER */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger-line {
  width: 28px;
  height: 2.4px;
  background: var(--green, #0B3B2E);
  transition: 0.3s ease;
}

/* ACTIVE → X */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* BODY LOCK */
body.menu-open {
  overflow: hidden;
}

/* MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 360px);
  height: 100vh;
  background: var(--card, #F6EBC6);
  transform: translateX(110%);
  transition: 0.3s ease;
  z-index: 1001;
  padding: 90px 26px 26px;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}

/* LINKS */
.mobile-menu-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu-links .nav-link {
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--green, #0B3B2E);
  font-size: 1.05rem;
  background: transparent;
}

.mobile-menu-links .nav-link.active {
  background: var(--greenDark, #072B22);
  color: #fff;
}

/* FOOTER */
.mobile-menu-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-divider {
  height: 1px;
  background: rgba(11, 59, 46, 0.15);
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green, #0B3B2E);
  font-weight: 500;
}

.mobile-socials {
  display: flex;
  gap: 12px;
}

/* =========================
   MENU PAGE SPECIFIC STYLES
========================= */

/* TOP SPACE FIX (same as Home) */
body.menu-page .hero-wrapper {
  align-items: flex-start; /* card top side */
  padding-top: 48px; /* top space */
  padding-bottom: 24px;
}

body.menu-page .card-container {
  margin-top: 20px; /* same “floating” gap like Home */
}

/* card container relative for absolute positioning */
body.menu-page .card-container {
  position: relative;
}

/* hamburger position left-top */
body.menu-page .hamburger-btn {
  position: absolute;
  top: 48px;
  left: 36px;
  z-index: 2000;
  transform: scale(1.15);
}

/* =========================
   RESPONSIVE (FULL MOBILE OPTIMIZED)
========================= */

@media (max-width: 1100px) {
  .card-container {
    height: auto;
    min-height: 640px;
  }
}

@media (max-width: 1024px) {
  .card-container {
    padding: 28px;
  }

  .navbar {
    gap: 12px;
  }

  .nav-link {
    padding: 10px 18px;
  }

  .tagline p,
  .address p {
    font-size: 1.05rem;
  }

  .drinks-card,
  .food-card,
  .footer-top {
    padding: 48px;
  }

  .drinks-grid,
  .food-grid {
    gap: 48px;
  }

  .drinks-left,
  .food-left {
    max-height: 700px;
  }

  .drinks-heading,
  .food-heading {
    font-size: 64px;
  }

  .drink-name,
  .drink-price,
  .food-name,
  .food-price {
    font-size: 17px;
  }

  .drink-description,
  .food-description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hero-wrapper {
    padding: 18px 14px;
    min-height: auto;
  }

  .card-container {
    padding: 22px 18px;
    min-height: 560px;
    height: auto;
  }

  /* NAVBAR LAYOUT FOR MOBILE */
  .navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    row-gap: 14px;
  }

  .logo {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .hamburger-btn {
    display: flex;
    grid-column: 1;
    justify-self: start;
    margin-top: 6px;
  }

  .nav-right {
    display: flex !important;
    grid-column: 2 / -1;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
  }

  .nav-center {
    display: none;
  }

  .phone-link span {
    display: inline; /* ensure phone number is visible */
  }

  .about-hero-title {
    font-size: clamp(4rem, 18vw, 10rem);
    margin-bottom: 14px; /* space between title and paragraph */
  }

  .bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 10px;
    gap: 12px;
  }

  .about-hero-address {
    text-align: center;
  }

  .drinks-card,
  .food-card,
  .footer-top {
    padding: 48px 32px;
  }

  /* stack menu + image */
  .drinks-grid,
  .food-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* remove internal scroll on mobile */
  .drinks-left,
  .food-left {
    padding-right: 0;
    max-height: none;
    overflow-y: visible;
  }

  /* sticky heading off on mobile (prevents jumping) */
  .drinks-heading,
  .food-heading {
    position: relative;
    top: 0;
  }

  /* image becomes normal block */
  .drinks-right,
  .food-right {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  /* keep only active image visible */
  .drinks-image,
  .food-image {
    display: none;
  }

  .drinks-image.active,
  .food-image.active {
    display: block;
  }

  /* control image height on mobile */
  .drinks-image-frame,
  .food-image-frame {
    aspect-ratio: auto;
    height: 340px;
  }

  .drink-description,
  .food-description {
    max-width: 100%;
  }

  .drinks-list-spacer,
  .food-list-spacer {
    height: 40px;
  }

  /* FOOTER MOBILE */
  .footer-shell {
    width: 92vw;
    border-radius: 32px;
  }

  .footer-top {
    padding: 34px 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-column {
    width: 100%;
  }

  /* move statement/social/menu block to bottom */
  .statement-column {
    order: 99;
  }

  .big-statement {
    max-width: 520px;
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 22px;
  }

  .action-row {
    gap: 16px;
    align-items: center;
  }

  .footer-nav .nav-link {
    width: fit-content;
  }

  .footer-bottom {
    height: 260px;
    padding-bottom: 40px;
  }

  .huge-text {
    font-size: 220px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.05rem;
  }

  .nav-link {
    padding: 9px 16px;
    font-size: 0.92rem;
  }

  .phone-link span {
    display: inline !important; /* force show phone number */
  }

  .cart-pill {
    padding: 8px 14px;
  }

  .tagline p,
  .address p {
    font-size: 1rem;
  }

  .drinks-card,
  .food-card,
  .footer-top {
    padding: 40px 24px;
    border-radius: 32px;
  }

  .drinks-heading,
  .food-heading {
    font-size: 48px;
    margin-bottom: 22px;
  }

  .drink-header,
  .food-header {
    gap: 8px;
  }

  .drink-name,
  .drink-price,
  .food-name,
  .food-price {
    font-size: 16px;
  }

  .drink-description,
  .food-description {
    font-size: 13px;
  }

  .drink-category-title,
  .food-category-title {
    font-size: 18px;
  }

  .drinks-image-frame,
  .food-image-frame {
    height: 300px;
  }

  /* hamburger position for small phones */
  body.menu-page .hamburger-btn {
    top: 40px;
    left: 24px;
    transform: scale(1.1);
  }

  .hamburger-line {
    width: 26px;
  }

  /* footer tighter */
  .footer-top {
    padding: 30px 22px;
  }

  .big-statement {
    font-size: 24px;
  }

  .menu-btn {
    padding: 14px 20px;
  }

  .social-btn {
    width: 46px;
    height: 46px;
  }
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .drinks-image-frame,
  .drinks-image,
  .food-image-frame,
  .food-image {
    transition: none !important;
    transform: none !important;
  }

  .drinks-image,
  .food-image {
    opacity: 0 !important;
  }

  .drinks-image.active,
  .food-image.active {
    opacity: 1 !important;
  }

  .cart-pill:hover {
    transform: none;
  }

  .huge-text .marquee-track {
    animation: none !important;
    transform: translate3d(0, 0, 0) !important;
  }
}