@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg: #fffbeb;
  --fg: #1e2937;
  --card: #ffffff;
  --card-fg: #1e2937;
  --primary: #22c55e;
  --primary-fg: #ffffff;
  --secondary: #1e2937;
  --secondary-fg: #ffffff;
  --accent: #f97316;
  --accent-fg: #ffffff;
  --fiery: #ef4444;
  --muted: #f5f0e0;
  --muted-fg: #64748b;
  --border: #e5dcc8;
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.hover-scale { transition: transform 0.3s; }
.hover-scale:hover { transform: scale(1.05); }
.hover-lift { transition: transform 0.3s, box-shadow 0.3s; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(239,68,68,0.15); }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background 0.3s, box-shadow 0.3s; padding: 0.75rem 0; }
.navbar.scrolled { background: rgba(30,41,55,0.95); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 1.25rem; font-weight: 900; }
.nav-logo .green { color: var(--primary); }
.nav-logo .white { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: #fff; font-size: 0.875rem; font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-hamburger { display: none; background: none; color: #fff; font-size: 1.5rem; }
.mobile-menu { display: none; flex-direction: column; gap: 0.5rem; padding: 1rem; background: rgba(30,41,55,0.95); backdrop-filter: blur(12px); }
.mobile-menu a { color: #fff; font-weight: 600; padding: 0.5rem 0; }
.mobile-menu.open { display: flex; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 700; font-size: 0.875rem; transition: all 0.3s; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: #1da94e; }
.btn-accent { background: var(--accent); color: var(--accent-fg); }
.btn-accent:hover { background: #e5670d; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-xl { padding: 1.25rem 3.5rem; font-size: 1.25rem; font-weight: 900; }

/* 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(30,41,55,0.8), rgba(30,41,55,0.6), rgba(30,41,55,0.9)); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 5rem 1rem 3rem; }
.hero h1 { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; animation: fadeInUp 0.6s ease-out; }
.hero h1 .gradient { background: linear-gradient(to right, var(--primary), var(--accent), var(--fiery)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 1.125rem; margin-bottom: 2rem; animation: fadeInUp 0.6s ease-out 0.1s both; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; animation: fadeInUp 0.6s ease-out 0.2s both; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; animation: fadeInUp 0.6s ease-out 0.3s both; }
.badge { display: flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); border-radius: 9999px; padding: 0.5rem 1rem; color: #fff; font-size: 0.8rem; font-weight: 500; }
.badge svg { width: 16px; height: 16px; color: var(--primary); }

/* Sections */
.section { padding: 5rem 0; }
.section-bg-card { background: var(--card); }
.section-bg { background: var(--bg); }
.section-bg-dark { background: var(--secondary); }
.section-title { font-size: 2rem; font-weight: 900; margin-bottom: 3rem; }
.section-title .green { color: var(--primary); }
.section-subtitle { color: var(--muted-fg); max-width: 30rem; margin: 0 auto 3rem; }

/* How it works */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.step-card { text-align: center; padding: 2rem; border-radius: 1rem; background: var(--bg); border: 1px solid var(--border); }
.step-icon { width: 4rem; height: 4rem; margin: 0 auto 1.5rem; border-radius: 1rem; background: rgba(34,197,94,0.1); display: flex; align-items: center; justify-content: center; }
.step-icon svg { width: 2rem; height: 2rem; color: var(--primary); }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; color: var(--muted-fg); }

/* Menu */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.menu-card { background: var(--card); border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); }
.menu-card-img { height: 13rem; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .menu-card-img img { transform: scale(1.1); }
.menu-card-body { padding: 1.5rem; }
.menu-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.menu-card-header h3 { font-size: 1.05rem; font-weight: 700; }
.menu-price { font-size: 1.25rem; font-weight: 900; color: var(--primary); white-space: nowrap; margin-left: 0.5rem; }
.menu-card-body p { font-size: 0.85rem; color: var(--muted-fg); margin-bottom: 1rem; }
.menu-card .btn { width: 100%; }

/* Delivery Map */
.map-wrapper { max-width: 56rem; margin: 0 auto 2rem; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.zip-form { max-width: 28rem; margin: 0 auto; text-align: center; }
.zip-form p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 1rem; }
.zip-row { display: flex; gap: 0.5rem; }
.zip-input { flex: 1; padding: 0.75rem 1rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: #fff; font-size: 0.875rem; outline: none; }
.zip-input::placeholder { color: rgba(255,255,255,0.4); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 0.75rem; }
.gallery-grid .g-tall { grid-row: span 2; }
.gallery-grid .g-wide { grid-column: span 2; }
.gallery-item { border-radius: 0.75rem; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

/* Testimonials */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 64rem; margin: 0 auto; }
.review-card { background: var(--card); padding: 2rem; border-radius: 1rem; border: 1px solid var(--border); }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.stars svg { width: 1.25rem; height: 1.25rem; fill: var(--accent); color: var(--accent); }
.review-card blockquote { font-size: 1.05rem; font-style: italic; margin-bottom: 1rem; }
.review-card cite { font-size: 0.875rem; color: var(--muted-fg); font-weight: 600; font-style: normal; }

/* FAQ */
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; background: none; font-weight: 700; font-size: 1rem; color: var(--fg); text-align: left; transition: color 0.3s; }
.faq-q:hover { color: var(--primary); }
.faq-q .arrow { transition: transform 0.3s; font-size: 1.25rem; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s; padding: 0 1.5rem; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem; }
.faq-a p { color: var(--muted-fg); font-size: 0.9rem; line-height: 1.7; }

/* CTA */
.cta-content { text-align: center; }
.cta-content h2 { color: #fff; font-size: 2rem; font-weight: 900; margin-bottom: 1rem; }
.cta-content h2 .green { color: var(--primary); }
.cta-content > p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 32rem; margin-left: auto; margin-right: auto; }
.cta-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; max-width: 56rem; margin: 3rem auto 0; }
.cta-info-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.cta-info-item svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.cta-info-item span { color: rgba(255,255,255,0.8); font-size: 0.85rem; }

/* Footer */
.footer { background: var(--fg); padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 1rem; }
.footer h3 .green { color: var(--primary); }
.footer h3 .white, .footer h4 { color: #fff; }
.footer h4 { font-weight: 700; margin-bottom: 1rem; }
.footer p, .footer a { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.footer a:hover { color: var(--primary); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.social-icons { display: flex; gap: 0.75rem; }
.social-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 700; transition: all 0.3s; }
.social-icon:hover { background: var(--primary); color: #fff; }
.footer-legal { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; color: rgba(255,255,255,0.3); font-size: 0.85rem; }

/* Floating button */
.floating-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; display: none; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--accent); color: #fff; align-items: center; justify-content: center; box-shadow: 0 8px 25px rgba(249,115,22,0.4); animation: fadeInUp 0.5s ease-out; }
.floating-btn svg { width: 1.5rem; height: 1.5rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .floating-btn { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-grid .g-wide { grid-column: span 1; }
  .menu-grid { grid-template-columns: 1fr; }
  .cta-content h2 { font-size: 1.5rem; }
}

@media (min-width: 640px) and (max-width: 768px) {
  .hero h1 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
  .section-title { font-size: 2.75rem; }
}
