@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f7f5f0;
  --fg: #2a2118;
  --card: #ffffff;
  --card-fg: #2a2118;
  --primary: #f26b20;
  --primary-fg: #ffffff;
  --secondary: #2d7a52;
  --secondary-fg: #ffffff;
  --muted: #edebe5;
  --muted-fg: #7a7064;
  --accent: #8c6630;
  --accent-fg: #ffffff;
  --border: #e0ddd4;
  --radius: 0.75rem;
  --shadow: 0 4px 24px -4px rgba(42,33,24,0.08);
  --shadow-hover: 0 8px 32px -4px rgba(42,33,24,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6,.font-heading { font-family: 'Plus Jakarta Sans', sans-serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; font-family: inherit; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 5rem 1rem; }
@media(min-width:768px){ .section-padding { padding: 7rem 2rem; } }

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; border-radius: 9999px; transition: all .2s; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-secondary { background: var(--secondary); color: var(--secondary-fg); }
.btn-secondary:hover { filter: brightness(1.1); }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-lg { padding: .875rem 2.5rem; font-size: 1rem; }

/* ─── Navbar ─── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all .3s; }
.navbar.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.navbar .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.navbar .brand { display: flex; align-items: center; gap: .5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.25rem; }
.navbar .brand .flame { color: var(--primary); }
.navbar .brand-text { color: #fff; }
.navbar.scrolled .brand-text { color: var(--fg); }
.nav-links { display: none; align-items: center; gap: 1.5rem; }
@media(min-width:1024px){ .nav-links { display: flex; } }
.nav-links a { font-size: .875rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.navbar:not(.scrolled) .nav-links a { color: #fff; }
.navbar.scrolled .nav-links a { color: var(--fg); }
.mobile-toggle { display: block; padding: .5rem; background: none; color: #fff; }
.navbar.scrolled .mobile-toggle { color: var(--fg); }
@media(min-width:1024px){ .mobile-toggle { display: none; } }
.mobile-menu { display: none; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-top: 1px solid var(--border); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: .75rem 0; color: var(--fg); font-weight: 500; }
.mobile-menu a:hover { color: var(--primary); }

/* ─── Hero ─── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(42,33,24,.7), rgba(42,33,24,.5), rgba(42,33,24,.8)); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 8rem 1rem; }
.hero-stars { display: flex; justify-content: center; gap: .25rem; margin-bottom: 1.5rem; }
.hero-stars svg { width: 1.25rem; height: 1.25rem; fill: var(--primary); color: var(--primary); }
.hero h1 { font-weight: 800; font-size: 2.5rem; color: #fff; margin-bottom: 1.5rem; line-height: 1.1; }
@media(min-width:640px){ .hero h1 { font-size: 3.25rem; } }
@media(min-width:768px){ .hero h1 { font-size: 4.5rem; } }
.hero p { color: rgba(255,255,255,.9); font-size: 1.125rem; max-width: 640px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media(min-width:640px){ .hero-btns { flex-direction: row; } }

/* ─── About ─── */
.about { background: var(--card); }
.about .subtitle { color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .875rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .75rem; }
.features-grid { display: grid; gap: 2rem; }
@media(min-width:768px){ .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card { text-align: center; padding: 2rem; border-radius: 1rem; background: var(--bg); border: 1px solid var(--border); transition: box-shadow .3s; }
.feature-card:hover { box-shadow: var(--shadow-hover); }
.feature-icon { width: 3.5rem; height: 3.5rem; border-radius: .75rem; background: rgba(242,107,32,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.feature-icon svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }

/* ─── Menu ─── */
.menu-grid { display: grid; gap: 1.5rem; }
@media(min-width:640px){ .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .menu-grid { grid-template-columns: repeat(4, 1fr); } }
.menu-card { background: var(--card); border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); transition: all .3s; }
.menu-card:hover { box-shadow: var(--shadow-hover); }
.menu-card .img-wrap { aspect-ratio: 1; overflow: hidden; }
.menu-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.menu-card:hover img { transform: scale(1.05); }
.menu-card .info { padding: 1.25rem; }
.menu-card .info-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.menu-card h3 { font-weight: 700; }
.cal-badge { font-size: .75rem; font-weight: 500; color: var(--muted-fg); background: var(--muted); padding: .25rem .5rem; border-radius: 9999px; }

/* ─── Delivery ─── */
.delivery { background: var(--secondary); color: var(--secondary-fg); }
.delivery .subtitle { color: var(--primary); }
.zones-grid { display: grid; gap: 2rem; max-width: 896px; margin: 0 auto 3rem; }
@media(min-width:768px){ .zones-grid { grid-template-columns: repeat(2, 1fr); } }
.zone-card { background: var(--card); color: var(--card-fg); border-radius: 1rem; padding: 2rem; border: 1px solid var(--border); }
.zone-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.city-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .75rem; }
.city-tag { display: flex; align-items: center; gap: .25rem; background: rgba(242,107,32,.1); color: var(--primary); font-size: .875rem; font-weight: 500; padding: .375rem .75rem; border-radius: 9999px; }
.city-tag svg { width: .75rem; height: .75rem; }
.delivery-stats { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
@media(min-width:640px){ .delivery-stats { flex-direction: row; justify-content: center; } }
.delivery-stat { display: flex; align-items: center; gap: .5rem; font-weight: 500; }
.delivery-stat svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }

/* ─── Gallery ─── */
.gallery { background: var(--card); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media(min-width:768px){ .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.gallery-item { border-radius: .75rem; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; min-height: 180px; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.span2 { grid-column: span 2; }
.gallery-item.row2 { grid-row: span 2; }

/* ─── Reviews ─── */
.reviews-grid { display: grid; gap: 1.5rem; }
@media(min-width:640px){ .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review-card { background: var(--card); border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); display: flex; flex-direction: column; transition: box-shadow .3s; }
.review-card:hover { box-shadow: var(--shadow-hover); }
.review-quote { width: 2rem; height: 2rem; color: rgba(242,107,32,.3); margin-bottom: 1rem; }
.review-text { font-weight: 500; margin-bottom: 1.25rem; flex: 1; }
.review-stars { display: flex; gap: 2px; margin-bottom: .5rem; }
.review-stars svg { width: 1rem; height: 1rem; fill: var(--primary); color: var(--primary); }

/* ─── Order CTA ─── */
.order-cta { background: var(--primary); color: var(--primary-fg); text-align: center; }

/* ─── FAQ ─── */
.faq { background: var(--card); }
.faq-list { max-width: 768px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: .75rem; padding: 0 1.5rem; overflow: hidden; transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow); }
.faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.25rem 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; text-align: left; background: none; font-size: 1rem; color: var(--fg); cursor: pointer; }
.faq-q svg { width: 1.25rem; height: 1.25rem; color: var(--muted-fg); transition: transform .2s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: var(--muted-fg); }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.25rem; }

/* ─── Contact ─── */
.contact-grid { display: grid; gap: 1.5rem; }
@media(min-width:640px){ .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; background: var(--card); border-radius: 1rem; border: 1px solid var(--border); }
.contact-icon { width: 2.75rem; height: 2.75rem; border-radius: .75rem; background: rgba(242,107,32,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.contact-label { font-size: .875rem; color: var(--muted-fg); margin-bottom: .25rem; }
.contact-value { font-weight: 500; }
.contact-value a:hover { color: var(--primary); transition: color .2s; }

/* ─── Footer ─── */
.footer { background: var(--fg); color: #fff; padding: 3rem 1rem; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
@media(min-width:768px){ .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer .brand { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.125rem; display: flex; align-items: center; gap: .5rem; }
.footer .brand svg { color: var(--primary); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; font-size: .875rem; }
.footer-links a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-social a:hover { color: var(--primary); }
.footer-social svg { width: 1.25rem; height: 1.25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 2rem; text-align: center; font-size: .875rem; color: rgba(255,255,255,.5); }

/* ─── Modal ─── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 100; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal { background: var(--card); border-radius: 1rem; padding: 2rem; width: 90%; max-width: 420px; position: relative; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; font-size: 1.5rem; color: var(--muted-fg); }
.modal h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.25rem; margin-bottom: 1rem; }
.modal label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .375rem; }
.modal select, .modal input[type="text"] { width: 100%; border: 1px solid var(--border); border-radius: .5rem; padding: .625rem .75rem; font-size: 1rem; background: var(--bg); color: var(--fg); margin-bottom: 1rem; }
.modal .result { text-align: center; padding: 1.5rem 0; }
.modal .result-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: rgba(45,122,82,.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.modal .result-icon svg { width: 1.75rem; height: 1.75rem; color: var(--secondary); }
.modal .result-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.125rem; margin-bottom: .5rem; }
.modal .result-time { display: flex; align-items: center; justify-content: center; gap: .5rem; color: var(--muted-fg); font-size: .875rem; }

/* ─── Utility ─── */
.text-center { text-align: center; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.w-full { width: 100%; }
