/* Texas Blaze Tacos — Static Styles */
@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 {
  --background: #fffbeb;
  --foreground: #1e2937;
  --card: #ffffff;
  --card-foreground: #1e2937;
  --primary: #22c55e;
  --primary-fg: #ffffff;
  --secondary: #ef4444;
  --accent: #f97316;
  --navy: #1e2937;
  --cream: #fffbeb;
  --lime: #22c55e;
  --fire: #ef4444;
  --orange: #f97316;
  --muted: #f3edd8;
  --muted-fg: #6b7280;
  --border: #e5ddc8;
  --radius: 0.75rem;
}

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

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

/* Utilities */
.text-gradient-fire { background: linear-gradient(135deg, var(--fire), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bg-gradient-fire { background: linear-gradient(135deg, var(--fire), var(--orange)); }
.bg-gradient-lime { background: linear-gradient(135deg, var(--lime), #16a34a); }
.shadow-glow-lime { box-shadow: 0 0 30px rgba(34,197,94,0.3); }
.shadow-glow-fire { box-shadow: 0 0 30px rgba(239,68,68,0.3); }

/* Buttons */
.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: 1rem; transition: transform 0.2s, box-shadow 0.2s; }
.btn:hover { transform: scale(1.05); }
.btn-fire { background: linear-gradient(135deg, var(--fire), var(--orange)); color: #fff; }
.btn-fire:hover { box-shadow: 0 0 30px rgba(239,68,68,0.4); }
.btn-lime { background: linear-gradient(135deg, var(--lime), #16a34a); color: #fff; }
.btn-lime:hover { box-shadow: 0 0 30px rgba(34,197,94,0.4); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: #fff; backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Animations */
@keyframes fade-up { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 20px rgba(34,197,94,0.3); } 50% { box-shadow: 0 0 40px rgba(34,197,94,0.6); } }
@keyframes pulse-glow-fire { 0%, 100% { box-shadow: 0 0 20px rgba(239,68,68,0.3); } 50% { box-shadow: 0 0 40px rgba(239,68,68,0.6); } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.animate-fade-up { animation: fade-up 0.6s ease-out forwards; }
.animate-pulse-glow { animation: pulse-glow-fire 2s ease-in-out infinite; }
.scroll-hidden { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.scroll-visible { opacity: 1; transform: translateY(0); }

/* ========= NAVBAR ========= */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background 0.3s, box-shadow 0.3s; padding: 1rem 0; }
.navbar.scrolled { background: rgba(30,41,55,0.95); backdrop-filter: blur(12px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { display: flex; align-items: center; gap: 0.5rem; }
.navbar-logo svg { width: 2rem; height: 2rem; color: var(--orange); }
.navbar-logo span { font-size: 1.25rem; font-weight: 900; color: #fff; }
.navbar-logo .accent { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links button { background: none; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.nav-links button:hover { color: var(--orange); }
.mobile-toggle { display: none; background: none; color: #fff; }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }
.mobile-menu { display: none; background: rgba(30,41,55,0.95); backdrop-filter: blur(12px); padding-bottom: 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu button { display: block; width: 100%; text-align: left; padding: 0.75rem 1.5rem; background: none; color: rgba(255,255,255,0.8); font-weight: 500; transition: color 0.2s, background 0.2s; }
.mobile-menu button:hover { color: var(--orange); background: rgba(255,255,255,0.05); }

@media (max-width: 768px) {
  .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; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(30,41,55,0.7); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 5rem 1rem 3rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 1.5rem; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 1.125rem; font-weight: 500; color: rgba(255,255,255,0.8); margin-bottom: 2rem; letter-spacing: 0.05em; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border-radius: 9999px; padding: 0.625rem 1.25rem; }
.trust-badge svg { width: 1.25rem; height: 1.25rem; color: var(--lime); }
.trust-badge span { font-size: 0.875rem; font-weight: 600; color: #fff; }

/* ========= HOW IT WORKS ========= */
.how-it-works { padding: 5rem 0; background: var(--card); }
.section-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; text-align: center; margin-bottom: 1rem; }
.section-subtitle { text-align: center; color: var(--muted-fg); font-size: 1.125rem; margin-bottom: 3.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step-card { position: relative; background: var(--background); border-radius: 1rem; padding: 2rem; text-align: center; border: 1px solid var(--border); transition: all 0.3s; }
.step-card:hover { border-color: rgba(34,197,94,0.5); box-shadow: 0 0 30px rgba(34,197,94,0.15); transform: scale(1.05); }
.step-icon { width: 4rem; height: 4rem; margin: 0 auto 1.25rem; border-radius: 1rem; background: linear-gradient(135deg, var(--lime), #16a34a); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(34,197,94,0.3); transition: transform 0.3s; }
.step-card:hover .step-icon { transform: scale(1.1); }
.step-icon svg { width: 2rem; height: 2rem; color: #fff; }
.step-number { position: absolute; top: -0.75rem; right: -0.75rem; width: 2rem; height: 2rem; border-radius: 50%; background: linear-gradient(135deg, var(--fire), var(--orange)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.875rem; }
.step-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { color: var(--muted-fg); font-size: 0.875rem; }

@media (max-width: 1024px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps-grid { grid-template-columns: 1fr; } }

/* ========= MENU ========= */
.menu-section { padding: 5rem 0; }
.menu-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(239,68,68,0.1); color: var(--fire); border-radius: 9999px; padding: 0.375rem 1rem; font-size: 0.875rem; font-weight: 700; margin-bottom: 1rem; }
.menu-badge svg { width: 1rem; height: 1rem; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.menu-card { background: var(--card); border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.menu-card:hover { border-color: rgba(249,115,22,0.5); box-shadow: 0 10px 40px rgba(0,0,0,0.1); transform: scale(1.02); }
.menu-card-img { position: relative; overflow: hidden; height: 13rem; }
.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-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: linear-gradient(135deg, var(--fire), var(--orange)); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 9999px; }
.menu-card-body { padding: 1.25rem; }
.menu-card-body h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.menu-card-body .desc { color: var(--muted-fg); font-size: 0.875rem; margin-bottom: 0.75rem; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-price { font-size: 1.5rem; font-weight: 900; color: var(--orange); }
.menu-cal { font-size: 0.75rem; color: var(--muted-fg); margin-left: 0.5rem; }

@media (max-width: 1024px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .menu-grid { grid-template-columns: 1fr; } }

/* ========= DELIVERY MAP ========= */
.delivery-section { padding: 5rem 0; background: var(--navy); overflow: hidden; }
.delivery-section .section-title { color: #fff; }
.delivery-section .section-subtitle { color: rgba(255,255,255,0.6); }
.map-container { position: relative; max-width: 48rem; margin: 0 auto; }
.map-container svg { width: 100%; }
.city-pin { position: absolute; display: flex; flex-direction: column; align-items: center; }
.city-pin .ping { position: absolute; width: 2rem; height: 2rem; margin: -0.25rem; background: rgba(34,197,94,0.3); border-radius: 50%; animation: ping 2s cubic-bezier(0,0,0.2,1) infinite; }
.city-pin svg { width: 1.5rem; height: 1.5rem; color: var(--lime); position: relative; z-index: 2; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.city-pin span { font-size: 0.75rem; font-weight: 700; color: #fff; margin-top: 0.25rem; background: rgba(30,41,55,0.8); padding: 0.125rem 0.5rem; border-radius: 9999px; opacity: 0.8; transition: opacity 0.2s; white-space: nowrap; }
.city-pin:hover span { opacity: 1; }

/* ========= GALLERY ========= */
.gallery-section { padding: 5rem 0; background: var(--card); }
.gallery-grid { columns: 2; gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; overflow: hidden; border-radius: 0.75rem; }
.gallery-item img { width: 100%; object-fit: cover; transition: transform 0.5s; border-radius: 0.75rem; }
.gallery-item:hover img { transform: scale(1.1); }

@media (min-width: 768px) { .gallery-grid { columns: 3; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; } }

/* ========= TESTIMONIALS ========= */
.testimonials-section { padding: 5rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 56rem; margin: 0 auto; }
.testimonial-card { background: var(--card); border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); transition: all 0.3s; }
.testimonial-card:hover { border-color: rgba(249,115,22,0.5); box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: scale(1.02); }
.stars { display: flex; gap: 0.25rem; margin-bottom: 0.75rem; }
.stars svg { width: 1.25rem; height: 1.25rem; fill: var(--orange); color: var(--orange); }
.testimonial-card .quote { margin-bottom: 1rem; font-style: italic; }
.testimonial-card .name { font-weight: 700; }
.testimonial-card .city { font-size: 0.875rem; color: var(--muted-fg); }

@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ========= FAQ ========= */
.faq-section { padding: 5rem 0; background: var(--card); }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--background); border-radius: 0.75rem; border: 1px solid var(--border); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(249,115,22,0.5); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; background: none; font-weight: 700; font-size: 1rem; text-align: left; color: var(--foreground); transition: color 0.2s; }
.faq-question:hover { color: var(--orange); }
.faq-question svg { width: 1.25rem; height: 1.25rem; transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1.5rem 1rem; color: var(--muted-fg); }

/* ========= FINAL CTA ========= */
.final-cta { position: relative; padding: 5rem 0; background: var(--navy); overflow: hidden; }
.final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, var(--fire), var(--orange)); opacity: 0.05; }
.final-cta .content { position: relative; text-align: center; }
.final-cta h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
.final-cta .subtitle { color: rgba(255,255,255,0.7); font-size: 1.125rem; margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 3rem; margin-top: 4rem; color: rgba(255,255,255,0.6); font-size: 0.875rem; text-align: center; }
.contact-grid svg { width: 1.25rem; height: 1.25rem; color: var(--lime); margin: 0 auto 0.5rem; }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); font-size: 0.75rem; text-align: center; }

@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ========= FLOATING BUTTON ========= */
.floating-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: linear-gradient(135deg, var(--fire), var(--orange)); color: #fff; display: none; align-items: center; justify-content: center; box-shadow: 0 0 30px rgba(239,68,68,0.4); animation: pulse-glow-fire 2s ease-in-out infinite; }
.floating-btn svg { width: 1.5rem; height: 1.5rem; }
@media (max-width: 768px) { .floating-btn { display: flex; } }
