:root {
  --clr-bg: #0f0c08;
  --clr-surface: #1a1410;
  --clr-surface2: #221c16;
  --clr-gold: #c8921a;
  --clr-gold-light: #e8a82e;
  --clr-gold-muted: #8a6212;
  --clr-red: #b83020;
  --clr-text: #f0e8d8;
  --clr-muted: #9a8878;
  --clr-border: #2e2520;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 6px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.04em;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); text-transform: uppercase;
}
.btn-primary { background: var(--clr-gold); color: #0f0c08; border-color: var(--clr-gold); }
.btn-primary:hover {
  background: var(--clr-gold-light); border-color: var(--clr-gold-light);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,146,26,0.3);
}
.btn-outline { background: transparent; color: var(--clr-text); border-color: rgba(240,232,216,0.5); }
.btn-outline:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(15,12,8,0.97);
  box-shadow: 0 1px 0 var(--clr-border);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 40px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 8px 14px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--clr-muted); transition: color var(--transition); white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--clr-text); }
.nav-order-btn {
  background: var(--clr-gold) !important; color: #0f0c08 !important;
  border-radius: 6px; padding: 9px 18px !important;
  font-weight: 700 !important; margin-left: 8px;
}
.nav-order-btn:hover { background: var(--clr-gold-light) !important; }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--clr-surface2); border: 1px solid var(--clr-border);
  border-radius: var(--radius); min-width: 210px; padding: 8px 0;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: var(--transition); z-index: 200;
}
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 10px 20px; font-size: 0.88rem;
  color: var(--clr-muted); transition: color var(--transition), background var(--transition);
}
.dropdown li a:hover { color: var(--clr-gold); background: rgba(200,146,26,0.08); }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--clr-text); transition: var(--transition); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.4) saturate(0.85);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,7,4,0.88) 40%, rgba(10,7,4,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--clr-gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--clr-gold); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; line-height: 1.05; color: var(--clr-text); margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--clr-gold); }
.hero-sub { font-size: 1.15rem; color: rgba(240,232,216,0.7); margin-bottom: 36px; max-width: 420px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge { position: absolute; bottom: 48px; right: 48px; z-index: 3; }
.badge-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--clr-gold); color: #0f0c08; text-align: center;
  font-size: 0.8rem; line-height: 1.3;
  animation: badgeSpin 20s linear infinite;
  box-shadow: 0 8px 32px rgba(200,146,26,0.4);
}
.badge-inner strong { font-size: 1rem; font-weight: 800; display: block; }
@keyframes badgeSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* STRIP */
.strip { background: var(--clr-gold); overflow: hidden; padding: 14px 0; }
.strip-inner {
  display: flex; align-items: center; gap: 32px;
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #0f0c08; white-space: nowrap;
  animation: marquee 22s linear infinite; width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* LABELS */
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--clr-gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 12px;
}
.section-sub { color: var(--clr-muted); font-size: 1rem; margin-bottom: 48px; max-width: 500px; }

/* ABOUT */
.about-section { padding: 100px 0; background: var(--clr-surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; border-radius: 16px; overflow: visible; }
.about-image-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: 16px; }
.about-badge-float {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--clr-gold); color: #0f0c08;
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 10px 20px; border-radius: 4px;
  transform: rotate(-2deg);
}
.about-text h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 20px;
}
.about-text p { color: var(--clr-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 32px; }

/* CATEGORIES */
.categories-section { padding: 100px 0; background: var(--clr-bg); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  display: block; cursor: pointer; transition: transform var(--transition);
}
.cat-card:hover { transform: translateY(-4px); }
.cat-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.cat-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease; filter: brightness(0.55);
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.06); filter: brightness(0.75); }
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,7,4,0.88) 30%, transparent 70%);
  border-radius: var(--radius);
}
.cat-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 20px 16px 16px;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--clr-text); text-align: center; transition: color var(--transition);
}
.cat-card:hover .cat-label { color: var(--clr-gold); }

/* PROMO */
.promo-section {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border); border-bottom: 1px solid var(--clr-border);
  padding: 80px 0;
}
.promo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.promo-tag {
  display: inline-block; background: var(--clr-red); color: white;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 4px 12px; border-radius: 4px; margin-bottom: 16px;
}
.promo-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 10px;
}
.promo-price { font-size: 2.4rem; font-weight: 800; color: var(--clr-gold); margin-bottom: 16px; }
.promo-price span { font-size: 1rem; font-weight: 400; color: var(--clr-muted); }
.promo-desc { color: var(--clr-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; max-width: 380px; }
.promo-img img { width: 100%; max-height: 400px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(200,146,26,0.2)); }

/* CTA */
.cta-section { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3) saturate(0.7); }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,7,4,0.5), rgba(10,7,4,0.75)); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 16px;
}
.cta-content p { color: rgba(240,232,216,0.75); font-size: 1.1rem; margin-bottom: 36px; }

/* FOOTER */
.footer { background: var(--clr-surface); border-top: 1px solid var(--clr-border); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 50px; border-bottom: 1px solid var(--clr-border);
}
.footer-logo { height: 60px; width: auto; margin-bottom: 12px; }
.halal-badge { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--clr-muted); font-size: 0.9rem; line-height: 1.7; max-width: 260px; }
.footer-links h4, .footer-social h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--clr-gold); margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--clr-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-links ul li a:hover { color: var(--clr-text); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--clr-surface2); border: 1px solid var(--clr-border);
  color: var(--clr-muted); transition: var(--transition);
}
.social-links a svg { width: 18px; height: 18px; }
.social-links a:hover { background: var(--clr-gold); color: #0f0c08; border-color: var(--clr-gold); }
.footer-bottom { padding: 20px 24px; text-align: center; color: var(--clr-muted); font-size: 0.82rem; }
.footer-bottom a { color: var(--clr-gold); }

/* PAGE HERO */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 60px) 0 70px;
  text-align: center; background: var(--clr-surface); border-bottom: 1px solid var(--clr-border);
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; line-height: 1.1; }
.page-hero h1 em { font-style: italic; color: var(--clr-gold); }
.page-hero p { color: var(--clr-muted); font-size: 1.1rem; margin-top: 12px; }

/* MENU TABS */
.menu-tabs {
  position: sticky; top: var(--nav-h); z-index: 50;
  background: var(--clr-bg); border-bottom: 1px solid var(--clr-border);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.tabs-inner { display: flex; gap: 0; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tab-link {
  display: block; padding: 16px 20px; font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-muted);
  border-bottom: 3px solid transparent; white-space: nowrap; transition: var(--transition);
}
.tab-link:hover, .tab-link.active { color: var(--clr-gold); border-bottom-color: var(--clr-gold); }

/* MENU SECTIONS */
.menu-section { padding: 80px 0; border-bottom: 1px solid var(--clr-border); }
.menu-section:last-of-type { border-bottom: none; }
.menu-section-header { margin-bottom: 40px; }
.menu-section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.menu-card {
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.menu-card:hover { border-color: var(--clr-gold-muted); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.menu-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.85); transition: filter var(--transition), transform 0.5s ease; }
.menu-card:hover .menu-card-img { filter: brightness(1); transform: scale(1.03); }
.menu-card-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.menu-card-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.menu-card-desc { color: var(--clr-muted); font-size: 0.875rem; line-height: 1.6; flex: 1; margin-bottom: 14px; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-card-price { font-size: 1.1rem; font-weight: 700; color: var(--clr-gold); }
.menu-card-order { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-muted); transition: color var(--transition); }
.menu-card:hover .menu-card-order { color: var(--clr-gold); }

/* LOCATION */
.location-section { padding: 80px 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.location-card { background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: 16px; padding: 40px; }
.location-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.location-detail { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.location-detail svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--clr-gold); margin-top: 2px; }
.location-detail p { color: var(--clr-muted); font-size: 0.95rem; line-height: 1.6; }
.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid var(--clr-border); }
.map-embed iframe { display: block; width: 100%; height: 480px; border: none; }

/* =============================================
   MOBILE & TABLET FIXES
   ============================================= */

/* Hamburger animation */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; z-index: 200; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--clr-text); transition: var(--transition); transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Tablet (640px - 1024px) */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0; right: 0; bottom: 0;
    background: rgba(15,12,8,0.98);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: var(--nav-h);
    padding-bottom: 20px;
    overflow-y: auto;
    z-index: 150;
    border-top: none;
  }
  .nav-links.open { display: flex; }

  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    display: block;
    text-align: left;
    font-size: 1rem;
    padding: 14px 28px;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border);
    font-weight: 500;
  }
  .nav-links > li > a:hover { color: var(--clr-gold); background: rgba(200,146,26,0.06); }

  .nav-order-btn {
    margin: 16px 24px !important;
    border-radius: 8px !important;
    text-align: center !important;
    padding: 14px 24px !important;
    display: block !important;
  }

  /* Dropdown in mobile: show as accordion */
  .dropdown {
    position: static !important;
    opacity: 1 !important;
    pointer-events: all !important;
    transform: none !important;
    background: var(--clr-surface2) !important;
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--clr-border) !important;
    min-width: unset !important;
    padding: 0 !important;
    display: none;
    width: 100%;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a {
    padding: 12px 44px !important;
    font-size: 0.9rem !important;
    border-bottom: 1px solid rgba(46,37,32,0.5) !important;
    display: block;
  }
  .dropdown li:last-child a { border-bottom: none !important; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 6vw, 4rem); }
  .hero-badge { bottom: 24px; right: 24px; }
  .badge-inner { width: 100px; height: 100px; font-size: 0.72rem; }
  .badge-inner strong { font-size: 0.85rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 340px; }
  .about-badge-float { right: 12px; }

  /* Categories */
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* Promo */
  .promo-inner { grid-template-columns: 1fr; gap: 40px; }
  .promo-img { order: -1; }
  .promo-img img { max-height: 280px; margin: 0 auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Location */
  .location-grid { grid-template-columns: 1fr; }
  .map-embed iframe { height: 360px; }

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

  /* Tabs scrollable */
  .menu-tabs { -webkit-overflow-scrolling: touch; }
  .tab-link { padding: 14px 16px; font-size: 0.8rem; }
}

/* Mobile (max 640px) */
@media (max-width: 640px) {
  .hero-title { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }
  .hero-badge { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-img-wrap { aspect-ratio: 1/1; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

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

  .section-title { font-size: 1.8rem; }
  .page-hero h1 { font-size: 2.2rem; }

  .promo-price { font-size: 1.8rem; }

  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }

  .tab-link { padding: 12px 14px; font-size: 0.78rem; }

  .location-card { padding: 24px 20px; }
  .map-embed iframe { height: 280px; }

  .strip-inner { gap: 16px; font-size: 0.75rem; }
}

/* Small mobile (max 380px) */
@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cat-label { font-size: 0.9rem; }
  .nav-logo img { height: 40px; }
}
