/* ============================================
   FAMILJEGRILLEN — Family Grill & Cafe
   Theme: Bright, Fun, Family-Friendly
   Font: Nunito (rounded, friendly)
   ============================================ */

/* --- THEME: Happy Orange (Default) --- */
[data-theme="orange"] {
  --color-primary: #F97316;
  --color-primary-dark: #EA580C;
  --color-primary-light: #FFF7ED;
  --color-primary-rgb: 249, 115, 22;
  --color-accent: #FBBF24;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FFF7ED;
  --color-text: #1C1917;
  --color-text-muted: #78716C;
  --color-border: #FED7AA;
  --color-card: #FFFFFF;
  --color-card-hover: #FFF7ED;
  --gradient-hero: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
  --gradient-deal: linear-gradient(135deg, #F97316, #F59E0B);
  --shadow-card: 0 8px 30px rgba(249, 115, 22, 0.12);
  --shadow-card-hover: 0 12px 40px rgba(249, 115, 22, 0.2);
}

/* --- THEME: Fresh Green --- */
[data-theme="green"] {
  --color-primary: #16A34A;
  --color-primary-dark: #15803D;
  --color-primary-light: #F0FDF4;
  --color-primary-rgb: 22, 163, 74;
  --color-accent: #4ADE80;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F0FDF4;
  --color-text: #14532D;
  --color-text-muted: #6B7280;
  --color-border: #BBF7D0;
  --color-card: #FFFFFF;
  --color-card-hover: #F0FDF4;
  --gradient-hero: linear-gradient(135deg, #16A34A 0%, #4ADE80 100%);
  --gradient-deal: linear-gradient(135deg, #16A34A, #22D3EE);
  --shadow-card: 0 8px 30px rgba(22, 163, 74, 0.12);
  --shadow-card-hover: 0 12px 40px rgba(22, 163, 74, 0.2);
}

/* --- THEME: Berry Blue --- */
[data-theme="blue"] {
  --color-primary: #2563EB;
  --color-primary-dark: #1D4ED8;
  --color-primary-light: #EFF6FF;
  --color-primary-rgb: 37, 99, 235;
  --color-accent: #60A5FA;
  --color-bg: #FFFFFF;
  --color-bg-alt: #EFF6FF;
  --color-text: #1E293B;
  --color-text-muted: #6B7280;
  --color-border: #BFDBFE;
  --color-card: #FFFFFF;
  --color-card-hover: #EFF6FF;
  --gradient-hero: linear-gradient(135deg, #2563EB 0%, #818CF8 100%);
  --gradient-deal: linear-gradient(135deg, #2563EB, #A855F7);
  --shadow-card: 0 8px 30px rgba(37, 99, 235, 0.12);
  --shadow-card-hover: 0 12px 40px rgba(37, 99, 235, 0.2);
}

/* ============================================
   BASE & TYPOGRAPHY
   ============================================ */
body {
  font-family: 'Nunito', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--color-primary);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.navbar-logo .logo-emoji {
  font-size: 1.4rem;
  margin-right: 0.3rem;
}

.navbar-links a {
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.navbar-links a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle button {
  border: 2px solid var(--color-border);
  background: transparent;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.lang-toggle button.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.theme-toggle {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.theme-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.theme-dot:hover {
  transform: scale(1.2);
}

.theme-dot.active {
  border-color: var(--color-text);
  transform: scale(1.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* ============================================
   HERO — Split Layout
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 1.5rem 80px;
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: var(--gradient-hero);
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.06;
  z-index: 0;
}

.hero-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  width: fit-content;
  border: 2px solid var(--color-border);
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
}

.hero-text h1 span {
  color: var(--color-primary);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 500px;
  line-height: 1.7;
}

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

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(var(--color-primary-rgb), 0.25);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image .hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--color-primary);
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.35);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(var(--color-primary-rgb), 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2.5px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  font-weight: 800;
}

.btn-white:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: var(--color-bg-alt);
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.section-header p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

/* ============================================
   MENU — Colorful Fun Cards with Emoji
   ============================================ */
.menu-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  border: 2.5px solid var(--color-border);
  background: var(--color-card);
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
}

.menu-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.menu-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--color-card);
  border-radius: 24px;
  padding: 1.75rem;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}

.menu-card .card-emoji {
  font-size: 2.5rem;
  line-height: 1;
}

.menu-card .card-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
}

.menu-card .card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  flex: 1;
}

.menu-card .card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
}

.menu-card .card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
}

/* ============================================
   DEALS & FAMILY PACKAGES
   ============================================ */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.deal-card {
  background: var(--color-card);
  border-radius: 24px;
  padding: 2rem;
  border: 2.5px solid var(--color-border);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}

.deal-card.featured {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  box-shadow: var(--shadow-card);
}

.deal-badge {
  display: inline-block;
  background: var(--gradient-deal);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.deal-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

.deal-card .deal-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.deal-card .deal-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.deal-card .deal-save {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

/* ============================================
   LUNCH DEAL — Bright Gradient Banner
   ============================================ */
.lunch-banner {
  background: var(--gradient-deal);
  border-radius: 30px;
  padding: 3rem 2.5rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.lunch-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.lunch-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.lunch-banner .lunch-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 0.4rem 1.2rem;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.lunch-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.lunch-banner .lunch-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.lunch-banner .lunch-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.lunch-banner .lunch-includes {
  font-size: 0.95rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

/* ============================================
   DELIVERY
   ============================================ */
.delivery-card {
  background: var(--color-card);
  border-radius: 24px;
  padding: 3rem;
  border: 2.5px solid var(--color-border);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.delivery-card .delivery-icon {
  font-size: 3rem;
}

.delivery-card h3 {
  font-size: 1.5rem;
}

.delivery-card p {
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.delivery-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.delivery-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
  background: var(--color-primary-light);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.about-grid p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--color-card);
  border-radius: 24px;
  padding: 2rem;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-card .stars {
  color: var(--color-accent);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-item h4 {
  font-weight: 800;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-info-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 2.5px solid var(--color-border);
  border-radius: 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background: var(--color-card);
  color: var(--color-text);
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.12);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.map-container {
  margin-top: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 2.5px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-text);
  color: #fff;
  padding: 3.5rem 1.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.footer p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  gap: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.fab:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.fab-call {
  background: var(--color-primary);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-order {
  background: var(--gradient-deal);
}

/* ============================================
   GRID HELPERS
   ============================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ============================================
   BOOKING PLACEHOLDER
   ============================================ */
.booking-placeholder {
  background: var(--color-bg-alt);
  border: 2.5px dashed var(--color-border);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
}

.booking-placeholder p {
  margin-bottom: 0.5rem;
}

/* ============================================
   KIDS SECTION SPECIAL
   ============================================ */
.kids-banner {
  background: var(--color-primary-light);
  border: 3px dashed var(--color-primary);
  border-radius: 30px;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.kids-banner h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.kids-banner p {
  color: var(--color-text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }

  .hero-text p {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image img {
    max-width: 400px;
    transform: rotate(0deg);
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-bg);
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 1000;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-links {
    flex-direction: column;
    list-style: none;
    padding: 0;
  }

  .navbar-links li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .navbar-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  .lunch-banner {
    padding: 2rem 1.5rem;
  }

  .lunch-banner .lunch-price {
    font-size: 2.5rem;
  }

  .menu-cards {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 1rem 60px;
  }

  .hero-image img {
    max-width: 300px;
  }

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