/* ============================================================
   CURRY HOUSE STOCKHOLM — Family Curry House Theme
   Bright, colorful, family-friendly Indian restaurant
   ============================================================ */

/* ---------- THEME: MANGO (default) ---------- */
[data-theme="mango"] {
  --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-surface: #FFFFFF;
  --color-text: #1C1917;
  --color-text-muted: #78716C;
  --color-border: #FED7AA;
  --color-footer-bg: #7C2D12;
  --color-footer-text: #FFF7ED;
  --color-hero-overlay: rgba(124, 45, 18, 0.55);
  --color-navbar-bg: rgba(255, 255, 255, 0.97);
  --color-navbar-text: #1C1917;
  --color-navbar-scrolled: rgba(255, 255, 255, 0.98);
  --gradient-hero: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
  --gradient-card: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

/* ---------- THEME: TIKKA PINK ---------- */
[data-theme="tikka-pink"] {
  --color-primary: #EC4899;
  --color-primary-dark: #DB2777;
  --color-primary-light: #FDF2F8;
  --color-primary-rgb: 236, 72, 153;
  --color-accent: #F472B6;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FDF2F8;
  --color-surface: #FFFFFF;
  --color-text: #1C1917;
  --color-text-muted: #78716C;
  --color-border: #FBCFE8;
  --color-footer-bg: #831843;
  --color-footer-text: #FDF2F8;
  --color-hero-overlay: rgba(131, 24, 67, 0.55);
  --color-navbar-bg: rgba(255, 255, 255, 0.97);
  --color-navbar-text: #1C1917;
  --color-navbar-scrolled: rgba(255, 255, 255, 0.98);
  --gradient-hero: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
  --gradient-card: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
}

/* ---------- THEME: MINT RAITA ---------- */
[data-theme="mint-raita"] {
  --color-primary: #14B8A6;
  --color-primary-dark: #0D9488;
  --color-primary-light: #F0FDFA;
  --color-primary-rgb: 20, 184, 166;
  --color-accent: #2DD4BF;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F0FDFA;
  --color-surface: #FFFFFF;
  --color-text: #1C1917;
  --color-text-muted: #78716C;
  --color-border: #99F6E4;
  --color-footer-bg: #134E4A;
  --color-footer-text: #F0FDFA;
  --color-hero-overlay: rgba(19, 78, 74, 0.55);
  --color-navbar-bg: rgba(255, 255, 255, 0.97);
  --color-navbar-text: #1C1917;
  --color-navbar-scrolled: rgba(255, 255, 255, 0.98);
  --gradient-hero: linear-gradient(135deg, #14B8A6 0%, #2DD4BF 100%);
  --gradient-card: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 100%);
}

/* ============================================================
   BASE & TYPOGRAPHY
   ============================================================ */

body {
  font-family: 'Nunito', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  font-weight: 400;
}

.section {
  padding: 5rem 0;
}

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

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

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

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: var(--color-navbar-bg);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.navbar.scrolled {
  background: var(--color-navbar-scrolled);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--color-primary);
}

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

.navbar-logo span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-top: -2px;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-links a {
  color: var(--color-navbar-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  border-radius: 8px;
  transition: color 0.3s;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
  transition: width 0.3s;
}

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

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

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

/* Language Toggle */
.lang-toggle {
  display: flex;
  background: var(--color-bg-alt);
  border-radius: 20px;
  padding: 3px;
  border: 2px solid var(--color-border);
}

.lang-toggle button {
  padding: 4px 12px;
  border: none;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 16px;
  color: var(--color-text-muted);
  transition: all 0.3s;
  font-family: 'Nunito', sans-serif;
}

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

/* Theme Toggle */
.theme-toggle {
  display: flex;
  gap: 6px;
  align-items: center;
}

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

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

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

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

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-text);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ============================================================
   HERO — Split Layout
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  color: white;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: white;
}

.hero-text .hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  opacity: 0.95;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

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

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 4px dashed rgba(255,255,255,0.3);
  z-index: -1;
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: white;
  top: 10%;
  right: -50px;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: white;
  bottom: 10%;
  left: -30px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.35);
}

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

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-white {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* ============================================================
   MENU — Colorful Category Cards
   ============================================================ */

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-category-card {
  background: var(--color-surface);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  border: 3px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-category-card:hover,
.menu-category-card.active {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(var(--color-primary-rgb), 0.15);
}

.menu-category-card.active {
  background: var(--gradient-card);
}

.menu-category-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.menu-category-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.menu-category-count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* Menu Items Panel */
.menu-panel {
  display: none;
}

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

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

.menu-items {
  display: grid;
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border-radius: 20px;
  border: 2px solid var(--color-border);
  transition: all 0.3s;
  gap: 1rem;
}

.menu-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.1);
  transform: translateX(4px);
}

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

.menu-item-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

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

.menu-item-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
  background: var(--color-primary-light);
  padding: 6px 14px;
  border-radius: 50px;
}

.menu-item-badges {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.dietary-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-v {
  background: #DCFCE7;
  color: #166534;
}

.badge-vg {
  background: #D1FAE5;
  color: #065F46;
}

.badge-gf {
  background: #FEF3C7;
  color: #92400E;
}

.badge-spicy {
  background: #FEE2E2;
  color: #991B1B;
}

.badge-popular {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* Spice level dots */
.spice-dots {
  display: inline-flex;
  gap: 3px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.spice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FCA5A5;
}

.spice-dot.hot {
  background: #EF4444;
}

.spice-dot.extra-hot {
  background: #DC2626;
}

/* Vegetarian section highlight */
.veg-section {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 2px dashed #86EFAC;
  border-radius: 24px;
  padding: 2rem;
  margin-top: 2rem;
}

.veg-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #166534;
  margin-bottom: 1rem;
}

.veg-section .menu-item {
  border-color: #BBF7D0;
}

/* ============================================================
   LUNCH BUFFET — Bright Banner
   ============================================================ */

.lunch-banner {
  background: var(--gradient-hero);
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}

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

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

.lunch-banner-content {
  position: relative;
  z-index: 2;
}

.lunch-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
}

.lunch-banner h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  color: white;
}

.lunch-banner .lunch-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.lunch-price {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.lunch-price span {
  font-size: 0.4em;
  font-weight: 600;
  opacity: 0.8;
  display: block;
}

.lunch-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.lunch-includes li {
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  list-style: none;
}

/* ============================================================
   CATERING
   ============================================================ */

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

.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.catering-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--color-text);
}

.catering-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.catering-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}

.catering-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.catering-features li::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.catering-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-stat {
  text-align: center;
  padding: 1.25rem;
  background: var(--color-primary-light);
  border-radius: 20px;
}

.about-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  border-radius: 20px;
  transition: background 0.3s;
}

.gallery-item:hover::after {
  background: rgba(var(--color-primary-rgb), 0.15);
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--color-surface);
  border-radius: 24px;
  padding: 2rem;
  border: 2px solid var(--color-border);
  transition: all 0.3s;
}

.review-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(var(--color-primary-rgb), 0.1);
}

.review-stars {
  color: #FBBF24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

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

.review-author {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
}

/* ============================================================
   CONTACT
   ============================================================ */

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

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

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

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

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

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

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  border: 2px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-surface);
  color: var(--color-text);
  transition: all 0.3s;
  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.1);
}

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

.form-message {
  padding: 1rem;
  border-radius: 16px;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 4rem 0 2rem;
}

.footer h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.footer-links a:hover {
  color: white;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */

.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  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: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

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

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

.fab svg {
  width: 24px;
  height: 24px;
}

/* ============================================================
   KIDS MENU BADGE
   ============================================================ */

.kids-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FDE68A, #FCD34D);
  color: #92400E;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   FAMILY DEAL CARDS
   ============================================================ */

.family-deals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.deal-card {
  background: var(--gradient-card);
  border-radius: 24px;
  padding: 2rem;
  border: 3px solid var(--color-border);
  text-align: center;
  transition: all 0.3s;
}

.deal-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(var(--color-primary-rgb), 0.15);
}

.deal-card-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.deal-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.deal-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

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

@media (max-width: 968px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

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

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

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

  .hamburger {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-surface);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 2rem;
  }

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

  .navbar-links {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .navbar-links a {
    font-size: 1.2rem;
  }

  .navbar-actions {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

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

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

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .catering-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3.5rem 0;
  }

  .menu-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .menu-category-card {
    padding: 1.25rem 1rem;
  }

  .menu-category-emoji {
    font-size: 2.2rem;
  }

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

  .lunch-banner {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

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

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

  .floating-actions {
    bottom: 1rem;
    right: 1rem;
  }

  .fab {
    width: 48px;
    height: 48px;
  }

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

  .hours-list li {
    flex-direction: column;
    gap: 0.15rem;
  }
}
