/* ==========================================
   LUNE RESTAURANT - STYLES
   ========================================== */

/* CSS Variables - Based on Brand Colors */
:root {
  /* Primærfarger */
  --color-brand-red: #ad0c2c;
  --color-dark-charcoal: #2d2d2d;
  --color-pure-black: #1a1a1a;

  /* Sekundærfarger */
  --color-light-cream: #fff8f0;
  --color-soft-gray: #f9f3ec;

  /* Aksent */
  --color-warm-red-hover: #c71038;
  --color-deep-red-pressed: #8a0924;
  --color-orange-accent: #ff6b4a;

  /* Tekstfarger */
  --color-text-primary: #2d2d2d;
  --color-text-secondary: #6a6a6a;
  --color-text-white: #ffffff;

  /* Funksjonsfarger */
  --color-success: #28a745;
  --color-warning: #ff6b4a;
  --color-error: #ad0c2c;
  --color-info: #ff6b4a;

  /* Bakgrunner */
  --bg-primary: #fff8f0;
  --bg-secondary: #f9f3ec;
  --bg-dark: #2d2d2d;

  /* Skygger */
  --shadow-sm: 0 1px 2px rgba(45, 45, 45, 0.1);
  --shadow-md: 0 4px 6px rgba(45, 45, 45, 0.15);
  --shadow-lg: 0 10px 15px rgba(45, 45, 45, 0.2);
  --shadow-xl: 0 20px 25px rgba(45, 45, 45, 0.25);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-primary);
  color: var(--color-text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* Better focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-brand-red);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Custom text selection */
::selection {
  background: rgba(173, 12, 44, 0.2);
  color: var(--color-text-primary);
}

::-moz-selection {
  background: rgba(173, 12, 44, 0.2);
  color: var(--color-text-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(173, 12, 44, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background: rgba(173, 12, 44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

/* Logo */
.header-logo {
  flex-shrink: 0;
  z-index: 1001;
}

.header-logo a {
  display: block;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 4px rgba(173, 12, 44, 0.15));
}

.header-logo a:hover {
  transform: scale(1.04) translateY(-2px);
  filter: drop-shadow(0 6px 12px rgba(173, 12, 44, 0.3));
}

.header-logo a:active {
  transform: scale(1.01) translateY(0);
}

.header-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Navigation */
.header-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: 11px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2.5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
  border-radius: 2.5px 2.5px 0 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-link.active::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:active {
  transform: scale(0.97);
}

.nav-text {
  position: relative;
  z-index: 1;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: var(--bg-primary);
  border-radius: 10px;
  color: var(--color-text-secondary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.header-info svg {
  color: var(--color-brand-red);
  flex-shrink: 0;
}

.header-info:hover {
  background-color: rgba(173, 12, 44, 0.08);
  color: var(--color-brand-red);
  transform: translateY(-2px) scale(1.03);
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.8rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-brand-red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 50px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.header-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.header-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}

.header-btn:hover::before {
  left: 100%;
}

.header-btn:hover::after {
  opacity: 1;
}

.header-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 1);
}

.header-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.2),
    inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-btn svg {
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle:hover .hamburger-line {
  background-color: #ffffff;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 85px;
  left: 0;
  width: 100%;
  height: calc(100vh - 85px);
  background-color: rgba(12, 6, 8, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-align: center;
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-brand-red);
  color: var(--color-text-white);
}

.btn-primary:hover {
  background-color: var(--color-warm-red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  background-color: var(--color-deep-red-pressed);
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-white);
  border-color: var(--color-text-white);
}

.btn-secondary:hover {
  background-color: var(--color-text-white);
  color: var(--color-brand-red);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.btn-foodora {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ad0c2c 0%, #8a0924 100%);
}

/* Wave SVG */
.wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 1;
  display: block;
}

.wave-top {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 1;
  display: block;
}

@media (max-width: 768px) {
  .wave-bottom,
  .wave-top {
    height: 100px;
  }
}

.wave-bottom path,
.wave-top path {
  transition: all 0.5s ease-in-out;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Hero Jubilee Badge */
.hero-jubilee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: fadeInUp 0.8s ease-out backwards;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: default;
}

.hero-jubilee-badge:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.badge-50-hero {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
}

img.badge-50-hero {
  height: 1.1rem;
  width: auto;
  filter: brightness(1);
}

.badge-text-hero {
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1.5px;
}

.badge-year {
  display: none;
}

/* Hero Title */
.hero-title {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 0.8;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  letter-spacing: -0.5px;
  text-align: center;
}

.hero-logo {
  width: clamp(200px, 40vw, 400px);
  height: auto;
  margin: 0 auto -7rem auto;
  display: block;
  filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.25)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.title-accent {
  display: block;
  color: #FFFFFF;
  font-weight: 700;
}

/* Hero Tagline */
.hero-tagline {
  margin: 0;
  max-width: 600px;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  letter-spacing: 0px;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
  text-align: center;
}

.tagline-highlight {
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
}

/* Hero Info Cards */
.hero-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 750px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  margin-top: 1rem;
}

.hero-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hero-info-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.hero-info-card svg {
  flex-shrink: 0;
  color: #FFD700;
  width: 20px;
  height: 20px;
}

.hero-info-card > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.reviews-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  justify-content: center;
}

.reviews-stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.reviews-stars svg {
  width: 14px;
  height: 14px;
}

.reviews-rating {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FBBC04;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.reviews-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.15rem;
  font-weight: 400;
}

.reviews-source {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.15rem;
}

.card-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}

.card-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
}

/* CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Foodora Button */
.hero-foodora-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #FF5B24;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 91, 36, 0.3);
  transition: all 0.3s ease;
}

.hero-foodora-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(255, 91, 36, 0.45);
  background: #FF6B34;
}

.hero-foodora-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(255, 91, 36, 0.3);
}

.foodora-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-foodora-btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Phone Button */
.hero-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-phone-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px) scale(1.02);
}

.hero-phone-btn:active {
  transform: translateY(0) scale(0.98);
  background: rgba(255, 255, 255, 0.12);
}

.hero-phone-btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.hero-info {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 1.125rem;
  color: var(--color-light-cream);
}

.hero-info-item svg {
  color: var(--color-brand-red);
}

/* ==========================================
   QUICK INFO BAR
   ========================================== */
.quick-info {
  background-color: var(--color-text-white);
  padding: var(--spacing-lg) 0;
  box-shadow: var(--shadow-sm);
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.quick-info-item {
  text-align: center;
  padding: var(--spacing-md);
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.quick-info-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.quick-info-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.quick-info-item h3 {
  font-size: 1.25rem;
  color: var(--color-brand-red);
  margin-bottom: var(--spacing-xs);
}

.quick-info-item p {
  color: var(--color-text-secondary);
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-brand-red);
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: var(--spacing-md) auto 0;
}

/* ==========================================
   MENU SECTION
   ========================================== */
.menu {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ad0c2c 0%, #8a0924 100%);
  padding: var(--spacing-xl) 0;
}

.menu-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-title-light {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.8px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.section-description {
  font-size: 1.08rem;
  color: #FFFFFF;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Menu Navigation */
.menu-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 1;
  visibility: visible;
}

.menu-nav.scrolled {
  background: rgba(138, 9, 36, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
  padding: 1.25rem 1.5rem;
  border-radius: 0 0 16px 16px;
  border-top: none;
}

.menu-nav.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.menu-nav-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.menu-nav-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

.menu-nav-item:hover .menu-nav-icon {
  transform: scale(1.1);
}

.menu-nav-item.active {
  background: white;
  color: var(--color-brand-red);
  border-color: white;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.menu-nav-item.active .menu-nav-icon {
  transform: scale(1.05);
}

.menu-nav-item.active:hover {
  background: white;
  transform: translateY(-2px) scale(1.02);
}

.menu-nav-item:active {
  transform: scale(0.97);
}

/* Menu Categories */
.menu-category {
  background: linear-gradient(to bottom, #FFFFFF 0%, #FEFEFE 100%);
  padding: 2.25rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.3s ease;
}

.menu-category::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(173, 12, 44, 0.12), rgba(199, 5, 74, 0.06), rgba(173, 12, 44, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.menu-category:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(173, 12, 44, 0.1);
  transform: translateY(-3px);
}

.menu-category-title {
  font-size: 1.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-brand-red) 0%, var(--color-warm-red-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.75rem;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  padding-bottom: 1rem;
  border-bottom: 3px solid rgba(173, 12, 44, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.3px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.1rem;
}

.menu-dish {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: linear-gradient(135deg, #FAFAFA 0%, #F8F8F8 100%);
  border-radius: 12px;
  transition: all 0.25s ease;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.menu-dish {
  cursor: pointer;
}

.menu-dish:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FEFEFE 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(173, 12, 44, 0.08);
  border-color: rgba(173, 12, 44, 0.25);
  transform: translateX(4px);
}

.dish-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.dish-info-header {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.dish-number {
  font-weight: 700;
  color: rgba(173, 12, 44, 0.6);
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  min-width: 28px;
  flex-shrink: 0;
  background: rgba(173, 12, 44, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
}

.dish-name {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.98rem;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.3;
}

.dish-description {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: 1.4;
  margin-left: 30px;
  margin-bottom: 0.25rem;
}

.dish-price {
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-brand-red) 0%, var(--color-warm-red-hover) 100%);
  color: white;
  font-size: 0.95rem;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(173, 12, 44, 0.3);
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.menu-dish:hover .dish-price {
  box-shadow: 0 4px 14px rgba(173, 12, 44, 0.4);
  transform: scale(1.05);
}

.menu-dish-variant {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.1rem;
  background: linear-gradient(135deg, #FEFEFE 0%, #FCFCFC 100%);
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.menu-dish-variant {
  cursor: pointer;
}

.menu-dish-variant:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FEFEFE 100%);
  border-color: rgba(173, 12, 44, 0.2);
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(173, 12, 44, 0.08);
}

.variant-name {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.92rem;
  font-family: 'Open Sans', sans-serif;
}

.menu-dish-variant .dish-price {
  font-size: 0.88rem;
  padding: 0.4rem 0.85rem;
}

.special-dish {
  background: white;
  border: 2px solid var(--color-brand-red);
  box-shadow: 0 2px 12px rgba(173, 12, 44, 0.12);
  font-weight: 600;
}

.menu-allergens {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
  padding: 1.5rem 2rem;
  border-radius: 14px;
  margin: 2.5rem 0 1.5rem 0;
  border: 2px solid #FFCC33;
  box-shadow: 0 4px 14px rgba(255, 149, 0, 0.2), 0 1px 4px rgba(255, 149, 0, 0.15);
  position: relative;
}

.menu-allergens::before {
  content: '⚠️';
  position: absolute;
  top: 1.5rem;
  left: -0.5rem;
  font-size: 1.5rem;
  background: white;
  padding: 0.4rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-allergens p {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
  padding-left: 1rem;
}

.menu-allergens strong {
  color: #B86B00;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  padding: 2.25rem;
  border-radius: 16px;
  max-width: 700px;
  margin: 3rem auto 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 1.5px solid rgba(173, 12, 44, 0.15);
  backdrop-filter: blur(10px);
}

.menu-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-menu {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-menu-primary {
  background: var(--color-brand-red);
  color: white;
}

.btn-menu-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 14px rgba(173, 12, 44, 0.35);
  background: var(--color-warm-red-hover);
}

.btn-menu-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 6px rgba(173, 12, 44, 0.25);
}

.btn-menu-foodora {
  background: #FF5B24;
  color: white;
}

.btn-menu-foodora:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 14px rgba(255, 91, 36, 0.35);
  background: #FF6B34;
}

.btn-menu-foodora:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 6px rgba(255, 91, 36, 0.25);
}

.foodora-icon-menu {
  width: 20px;
  height: 20px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ad0c2c 0%, #8a0924 100%);
  padding: var(--spacing-xl) 0;
}

.about-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-header {
  margin-bottom: 4rem;
}

.jubilee-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 50%, #FFA500 100%);
  padding: 1.5rem 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35), 0 2px 8px rgba(255, 165, 0, 0.2);
  transition: all 0.3s ease;
}

.jubilee-badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.45);
}

.jubilee-badge:active {
  transform: translateY(-1px) scale(0.98);
}

.jubilee-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-pure-black);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

img.jubilee-number {
  height: 3.5rem;
  width: auto;
}

.jubilee-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-pure-black);
  letter-spacing: 2px;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

.jubilee-years {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-deep-red-pressed);
  margin-top: 0.5rem;
}

.about-text-content {
  max-width: 750px;
  margin: 0 auto 3rem;
}

.about-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 400;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.feature-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(42%) sepia(87%) saturate(1679%) hue-rotate(334deg) brightness(102%) contrast(96%);
}

.feature-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 0.5rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.5;
}

.about-content-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--spacing-lg);
}

.jubilee-badge-large {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-orange-accent);
  color: var(--color-pure-black);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 4px solid var(--color-brand-red);
  box-shadow: var(--shadow-xl);
  margin-bottom: var(--spacing-md);
}

.jubilee-badge-large .jubilee-years {
  font-size: 4rem;
}

.jubilee-badge-large .jubilee-text {
  font-size: 1.5rem;
}

.about-text-wrapper {
  margin-top: var(--spacing-md);
}

.about-text {
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
  line-height: 1.8;
  color: #FFFFFF;
  text-align: left;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.about-stat {
  text-align: center;
  padding: var(--spacing-lg);
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.about-stat:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.about-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-brand-red);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--spacing-sm);
}

.about-highlights-section {
  background-color: var(--bg-primary);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--color-brand-red);
}

.highlights-title {
  text-align: center;
  font-size: 2rem;
  color: var(--color-brand-red);
  margin-bottom: var(--spacing-lg);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.highlight-item {
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
}

.highlight-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: var(--color-brand-red);
  color: var(--color-text-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.highlight-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--color-text-primary);
}

.highlight-content p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #ad0c2c 0%, #8a0924 50%, #1a1a1a 100%);
  padding: var(--spacing-xl) 0;
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.97);
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1.5px solid rgba(173, 12, 44, 0.08);
}

.contact-info-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 20px rgba(173, 12, 44, 0.18);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(173, 12, 44, 0.3);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem auto;
  display: block;
}

.contact-info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

.contact-info-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-info-card a {
  color: var(--color-brand-red);
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--color-warm-red-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.foodora-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #FF5B24;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.foodora-link:hover {
  color: #FF6B34;
  text-decoration: underline;
  text-underline-offset: 2px;
  transform: translateX(2px);
  display: inline-block;
}

/* Contact Form Wrapper */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Contact Form Section */
.contact-form-section {
  margin-top: 1.5rem;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.97);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1.5px solid rgba(173, 12, 44, 0.1);
  max-width: 900px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.contact-form-container:hover {
  box-shadow: 0 12px 40px rgba(173, 12, 44, 0.2);
  border-color: rgba(173, 12, 44, 0.25);
}

.contact-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.contact-form-subtitle {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.form-group label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 2px solid rgba(173, 12, 44, 0.15);
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: white;
  color: var(--color-text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-brand-red);
  box-shadow: 0 0 0 3px rgba(173, 12, 44, 0.1);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A50438' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Open Sans', sans-serif;
}

.contact-submit-btn {
  background: linear-gradient(135deg, var(--color-brand-red) 0%, var(--color-warm-red-hover) 100%);
  color: white;
  border: none;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(173, 12, 44, 0.3);
  align-self: center;
  min-width: 220px;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(173, 12, 44, 0.4);
  background: linear-gradient(135deg, var(--color-warm-red-hover) 0%, var(--color-brand-red) 100%);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-submit-btn .btn-send-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-send-icon {
  transform: translateX(4px) rotate(-10deg);
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  display: none;
  animation: slideDown 0.3s ease;
}

.form-message.success {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border: 2px solid rgba(39, 174, 96, 0.3);
  display: block;
}

.form-message.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 2px solid rgba(231, 76, 60, 0.3);
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Contact Form */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-title {
    font-size: 1.6rem;
  }

  .contact-submit-btn {
    width: 100%;
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: linear-gradient(180deg, #8a0924 0%, #1a1a1a 100%);
  color: var(--color-text-white);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-badge-container {
  margin-top: 1rem;
}

.footer-jubilee-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.footer-jubilee-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.45);
}

.footer-jubilee-badge:active {
  transform: translateY(0) scale(0.98);
}

.badge-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-pure-black);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

img.badge-number {
  height: 2rem;
  width: auto;
}

.badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-pure-black);
  letter-spacing: 1.5px;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

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

.footer-list li {
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  width: 16px;
  height: 16px;
  filter: invert(1) opacity(0.75);
  flex-shrink: 0;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-list a:hover {
  color: var(--color-brand-red);
  transform: translateX(3px);
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-social {
  margin-bottom: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
}

.social-link i {
  font-size: 1rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-brand-red);
  color: var(--color-text-white);
  transform: translateY(-2px) scale(1.02);
}

.social-link:active {
  transform: translateY(0) scale(0.98);
}

.footer-foodora-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  background: #FF5B24;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 91, 36, 0.3);
  width: fit-content;
}

.footer-foodora-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 14px rgba(255, 91, 36, 0.45);
  background: #FF6B34;
}

.footer-foodora-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 6px rgba(255, 91, 36, 0.25);
}

.foodora-icon-footer {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0 0 1.25rem 0;
  font-weight: 400;
}

.footer-credits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-credit-logo {
  height: 24px;
  width: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-credit-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ==========================================
   SHOPPING CART
   ========================================== */

/* Cart Button in Header */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cart-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cart-icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.cart-btn:hover .cart-icon {
  opacity: 0.9;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: #ffffff;
  color: var(--color-brand-red);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-brand-red);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cart-btn:hover .cart-count {
  background: var(--color-brand-red);
  color: white;
  border-color: white;
}

/* Custom scrollbar for better UX */
.cart-items::-webkit-scrollbar {
  width: 8px;
}

.cart-items::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: rgba(173, 12, 44, 0.3);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cart-items::-webkit-scrollbar-thumb:hover {
  background: rgba(173, 12, 44, 0.5);
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  pointer-events: none;
}

.cart-sidebar.active {
  pointer-events: auto;
}

.cart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 6, 8, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-sidebar.active .cart-overlay {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active .cart-panel {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-primary);
}

.cart-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(173, 12, 44, 0.08);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-brand-red);
}

.cart-close:hover {
  background: var(--color-brand-red);
  color: white;
  transform: rotate(90deg) scale(1.1);
}

.cart-close:active {
  transform: rotate(90deg) scale(0.95);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
}

.empty-cart-icon {
  width: 100px;
  height: 100px;
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.cart-empty p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.empty-cart-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  font-weight: 400 !important;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.cart-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: rgba(173, 12, 44, 0.2);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
  font-family: 'Montserrat', sans-serif;
}

.cart-item-category {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-brand-red);
  font-family: 'Montserrat', sans-serif;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-item-qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-red);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
}

.cart-item-qty-btn:hover {
  background: var(--color-warm-red-hover);
  transform: scale(1.1);
}

.cart-item-qty {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-primary);
  min-width: 30px;
  text-align: center;
}

.cart-item-remove {
  margin-left: auto;
  padding: 0.5rem 0.75rem;
  background: rgba(220, 53, 69, 0.1);
  color: #DC3545;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-item-remove:hover {
  background: #DC3545;
  color: white;
  transform: scale(1.05);
}

.cart-item-remove:active {
  transform: scale(0.95);
}

.cart-footer {
  padding: 1.5rem 1.75rem;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-primary);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: 'Montserrat', sans-serif;
}

.cart-total-amount {
  color: var(--color-brand-red);
  font-size: 1.5rem;
}

.cart-checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--color-brand-red);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(173, 12, 44, 0.3);
  margin-bottom: 0.75rem;
}

.cart-checkout-btn:hover {
  background: var(--color-warm-red-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(173, 12, 44, 0.45);
}

.cart-checkout-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(173, 12, 44, 0.3);
}

.cart-clear-btn {
  width: 100%;
  padding: 0.75rem;
  background: rgba(220, 53, 69, 0.1);
  color: #DC3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-clear-btn:hover {
  background: #DC3545;
  color: white;
  border-color: #DC3545;
  transform: translateY(-1px);
}

.cart-clear-btn:active {
  transform: translateY(0);
}

/* Add to Cart Button in Menu */
.dish-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: var(--color-brand-red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(173, 12, 44, 0.3);
}

.add-to-cart-btn:hover {
  background: var(--color-warm-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(173, 12, 44, 0.4);
}

.add-to-cart-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(173, 12, 44, 0.3);
}

.add-to-cart-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets and smaller */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr 1fr;
  }

  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1.5rem;
  }

  .header-content {
    height: 70px;
  }

  .header-logo img {
    height: 45px;
  }

  .header-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(12, 6, 8, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0;
    justify-content: flex-start;
  }

  .nav-link::before {
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    width: 4px;
    height: 100%;
    border-radius: 0 3px 3px 0;
  }

  .nav-link:hover::before,
  .nav-link.active::before {
    transform: scaleX(1);
  }

  .header-info {
    display: none;
  }

  .header-btn span {
    display: none;
  }

  .header-btn {
    padding: 0.75rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .mobile-menu-overlay {
    display: block;
    top: 70px;
    height: calc(100vh - 70px);
  }

  .hero-content {
    padding: 6rem 1.5rem 4rem 1.5rem;
    gap: 1rem;
  }

  .hero-jubilee-badge {
    padding: 0.6rem 1.2rem;
    gap: 0.5rem;
  }

  .badge-50-hero {
    font-size: 1rem;
  }

  img.badge-50-hero {
    height: 1rem;
    filter: brightness(0.7);
  }

  .badge-text-hero {
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-logo {
    width: clamp(180px, 60vw, 300px);
    margin: 0 auto -3rem auto;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .hero-info-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .hero-info-card {
    padding: 1rem 1rem;
  }

  .card-label {
    font-size: 0.7rem;
  }

  .card-value {
    font-size: 0.85rem;
  }

  .reviews-rating {
    font-size: 1.1rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-foodora-btn,
  .hero-phone-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    justify-content: center;
  }

  .foodora-icon {
    width: 20px;
    height: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-info {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .quick-info-grid {
    grid-template-columns: 1fr;
  }

  .menu-category {
    padding: 1.5rem;
  }

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

  .menu-items-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .menu-dish {
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-cta {
    padding: 1.5rem;
  }

  .menu-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-menu {
    width: 100%;
    justify-content: center;
  }

  .dish-number {
    font-size: 0.8rem;
    min-width: 26px;
    padding: 0.15rem 0.4rem;
  }

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

  .dish-price {
    font-size: 0.88rem;
    padding: 0.45rem 0.9rem;
  }

  .dish-info {
    gap: 0.6rem;
    width: 100%;
  }

  .dish-actions {
    width: 100%;
    justify-content: center;
  }

  /* Menu navigation responsive */
  .menu-nav {
    padding: 1.25rem 1rem;
    gap: 0.75rem;
    top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .menu-nav.scrolled {
    padding: 0.75rem 0.75rem;
    gap: 0.5rem;
  }

  .menu-nav-item {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    flex-shrink: 1;
    width: 100%;
    justify-content: center;
  }

  .menu-nav.scrolled .menu-nav-item {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }

  .menu-nav-item:last-child {
    grid-column: 1 / -1;
  }

  .menu-nav-icon {
    width: 22px;
    height: 22px;
  }

  .menu-nav.scrolled .menu-nav-icon {
    width: 18px;
    height: 18px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .about-highlights-section {
    padding: var(--spacing-md);
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column {
    align-items: center;
  }

  .footer-foodora-btn,
  .social-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .logo img {
    height: 50px;
  }

  .jubilee-badge {
    padding: 0.75rem 1rem;
  }

  .jubilee-years {
    font-size: 2rem;
  }

  .jubilee-text {
    font-size: 1rem;
  }

  /* Cart responsive */
  .cart-panel {
    max-width: 100%;
  }

  .cart-btn {
    width: 45px;
    height: 45px;
  }

  .cart-icon {
    width: 22px;
    height: 22px;
  }

  .cart-count {
    min-width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .add-to-cart-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    gap: 0.35rem;
  }

  .add-to-cart-btn svg {
    width: 15px;
    height: 15px;
  }

  .dish-actions {
    gap: 0.6rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }

  .container {
    padding: 0 1rem;
  }

  .header-content {
    padding: 0.75rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .contact-card {
    padding: var(--spacing-sm);
  }

  /* Menu specific for small mobile */
  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .menu-category {
    padding: 1.25rem;
  }

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

  .menu-dish {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
  }

  .dish-info {
    gap: 0.5rem;
    width: 100%;
  }

  .dish-description {
    margin-left: 0;
    margin-top: 0.25rem;
  }

  .dish-actions {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .add-to-cart-btn {
    justify-content: center;
    padding: 0.6rem 1rem;
  }

  .menu-dish-variant {
    margin-left: 1rem;
  }
}

/* Print styles */
@media print {
  .header,
  .hero-background,
  .mobile-menu-toggle,
  .btn,
  .footer-social {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-brand-red: #C7054A;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  /* Add dark mode overrides here if needed */
}
