@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

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

:root {
  --primary: #e02020;
  --primary-fg: #ffffff;
  --foreground: #141414;
  --background: #f7f7f7;
  --card: #ffffff;
  --muted: #666666;
  --border: #e5e5e5;
  --cream: #f5f2eb;
  --gold: #e6a817;
  --radius: 0.75rem;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--background); color: var(--foreground); line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.1; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: var(--font-body); }
ul { list-style: none; }

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

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.3s; padding: 1rem 0; }
.navbar.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.5rem; color: var(--foreground); }
.navbar-brand svg { width: 32px; height: 32px; color: var(--primary); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links button { background: none; font-size: 0.875rem; font-weight: 500; color: rgba(20,20,20,0.8); transition: color 0.2s; }
.nav-links button:hover { color: var(--primary); }
.mobile-toggle { display: none; background: none; font-size: 1.5rem; color: var(--foreground); }
.mobile-menu { display: none; flex-direction: column; align-items: center; gap: 1rem; padding: 1.5rem; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu button { background: none; font-size: 1rem; font-weight: 500; color: rgba(20,20,20,0.8); }

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(20,20,20,0.6); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 2rem 1rem; }
.hero h1 { font-size: clamp(3rem, 10vw, 8rem); color: var(--primary-fg); letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: clamp(1rem, 2.5vw, 1.5rem); color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 2.5rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { padding: 1rem 2rem; border-radius: var(--radius); background: var(--primary); color: var(--primary-fg); font-weight: 700; font-size: 1.125rem; transition: all 0.2s; box-shadow: 0 4px 15px rgba(224,32,32,0.3); }
.btn-primary:hover { background: #c91a1a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,32,32,0.4); }
.btn-outline { padding: 1rem 2rem; border-radius: var(--radius); background: transparent; color: var(--primary-fg); font-weight: 700; font-size: 1.125rem; border: 2px solid var(--primary-fg); transition: all 0.2s; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--foreground); }
.section-title { font-size: clamp(2.5rem, 5vw, 3.75rem); text-align: center; margin-bottom: 4rem; }
.section-dark .section-title { color: var(--primary-fg); }

/* ===== ABOUT ===== */
.about-text { max-width: 700px; margin: 0 auto; text-align: center; font-size: 1.125rem; color: var(--muted); line-height: 1.8; }

/* ===== MENU ===== */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
.menu-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: box-shadow 0.3s; }
.menu-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.menu-card-img { aspect-ratio: 1; 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.05); }
.menu-card-body { padding: 1.25rem; }
.menu-card-body h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.25rem; }
.menu-card-body .desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.25rem; }
.menu-card-body .cal { font-size: 0.75rem; color: var(--muted); margin-bottom: 1rem; }
.menu-card-body .btn-primary { width: 100%; text-align: center; padding: 0.625rem; font-size: 0.875rem; display: block; }

/* ===== LOCATIONS ===== */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.location-card { background: var(--card); border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: box-shadow 0.3s; }
.location-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.location-card svg { width: 40px; height: 40px; color: var(--primary); margin: 0 auto 1rem; }
.location-card h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 0.5rem; }
.location-card .address { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.location-card .hours { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.location-card .hours svg { width: 16px; height: 16px; margin: 0; }

/* ===== GALLERY ===== */
.gallery-grid { columns: 2; gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
@media (min-width: 768px) { .gallery-grid { columns: 3; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; } }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.review-card { background: var(--card); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.stars svg { width: 20px; height: 20px; fill: var(--gold); color: var(--gold); }
.review-card .quote { font-style: italic; margin-bottom: 1rem; }
.review-card .author { font-size: 0.875rem; color: var(--muted); font-weight: 600; }

/* ===== ORDER ===== */
.order-section { text-align: center; }
.order-section .btn-primary { font-size: 1.25rem; padding: 1.25rem 3rem; display: inline-flex; align-items: center; gap: 0.5rem; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(20,20,20,0.5); backdrop-filter: blur(4px); padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--card); border-radius: 1rem; padding: 2rem; max-width: 400px; width: 100%; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; font-size: 1.5rem; color: var(--muted); }
.modal h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 1.5rem; }
.modal-btn { width: 100%; padding: 0.75rem 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); background: none; font-weight: 500; margin-bottom: 0.75rem; transition: all 0.2s; font-size: 1rem; }
.modal-btn:hover { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.faq-question { width: 100%; padding: 1.25rem 1.5rem; background: none; text-align: left; font-weight: 600; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--muted); transition: transform 0.3s; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: 0.9375rem; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ===== CONTACT ===== */
.contact-card { background: var(--card); border-radius: 1rem; padding: 2rem 2.5rem; box-shadow: 0 2px 10px rgba(0,0,0,0.06); max-width: 800px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item svg { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.contact-item .label { font-weight: 600; margin-bottom: 0.125rem; }
.contact-item .value { font-size: 0.875rem; color: var(--muted); }
.contact-item a { color: var(--primary); }
.contact-item a:hover { text-decoration: underline; }
.contact-locations h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1rem; }
.contact-locations p { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.75rem; }
.contact-locations span { font-weight: 600; color: var(--foreground); }

/* ===== FOOTER ===== */
.footer { background: var(--foreground); padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand svg { width: 28px; height: 28px; color: var(--primary); }
.footer-brand span { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary-fg); }
.footer p, .footer a, .footer button { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer h4 { font-family: var(--font-display); font-size: 1.25rem; color: var(--primary-fg); margin-bottom: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul button { background: none; text-align: left; transition: color 0.2s; }
.footer ul button:hover, .footer .social a:hover { color: var(--primary); }
.footer .social { display: flex; gap: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== SVG ICONS (inline) ===== */
.icon { display: inline-block; vertical-align: middle; }
