/* Rolling Bites Food Truck — Pro Tier Demo */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --orange: #f4845f; --orange2: #e06d47; --lime: #2dd4bf; --lime2: #0d9488;
    --dark: #0d1a1a; --dark2: #112222; --dark3: #1a2f2f;
    --white: #fff; --cream: #fef8f5; --muted: #6b8a88;
    --border: rgba(244,132,95,.2); --text: #1a2525;
    --font: 'Inter', system-ui, sans-serif; --radius: 12px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--cream); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin: 12px 0 16px; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.6); }
.section-tag { display: inline-block; background: rgba(244,132,95,.15); color: var(--orange); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.accent { color: var(--orange); }

/* Demo Bar */
.demo-bar { background: var(--lime2); color: #fef8f5; text-align: center; padding: 10px 24px; font-size: .85rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1001; }
.demo-bar a { color: #fef8f5; text-decoration: underline; font-weight: 700; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; background: var(--orange); color: var(--white); font-weight: 700; font-size: .95rem; padding: 13px 28px; border-radius: 8px; border: 2px solid var(--orange); cursor: pointer; transition: background .2s, transform .15s; }
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; background: transparent; color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem; padding: 13px 28px; border-radius: 8px; border: 2px solid rgba(255,255,255,.35); transition: border-color .2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,.8); color: #fff; }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--orange); font-weight: 700; font-size: .9rem; padding: 11px 24px; border-radius: 8px; border: 2px solid var(--orange); cursor: pointer; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-nav { background: var(--orange); color: var(--white) !important; font-weight: 700; padding: 9px 20px; border-radius: 8px; }

/* Navbar */
.navbar { position: fixed; top: 36px; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: background .3s, top .3s; }
.navbar.scrolled { background: rgba(28,10,0,.97); box-shadow: 0 2px 20px rgba(0,0,0,.3); top: 0; backdrop-filter: blur(8px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.1rem; font-weight: 600; }
.nav-brand strong { font-weight: 900; }
.brand-icon { font-size: 1.4rem; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links li a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links li a:hover { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }

/* Hero */
.hero { min-height: 90vh; display: flex; align-items: center; padding: 120px 0 80px; position: relative; overflow: hidden; background: url('rolling_bites.png') center center / cover no-repeat; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,26,26,.92) 0%, rgba(13,26,26,.75) 50%, rgba(13,26,26,.5) 100%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(244,132,95,.2); color: #fdc9b4; font-size: .85rem; font-weight: 600; padding: 8px 16px; border-radius: 100px; border: 1px solid rgba(244,132,95,.3); margin-bottom: 20px; }
.hero-content h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; color: #fff; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,.62); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.today-card { background: var(--cream); border-radius: 16px; padding: 32px 28px; }
.today-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.today-place { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.today-city { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.today-hours { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--lime2); margin-bottom: 6px; }
.hours-dot { width: 8px; height: 8px; background: var(--lime2); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.today-wait { font-size: .82rem; color: var(--muted); margin-bottom: 20px; }
.today-card .btn-primary { width: 100%; justify-content: center; }

/* Location Section */
.location-section { background: var(--cream); position: relative; overflow: hidden; }
#austin-map-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.13; pointer-events: none; }
.location-section .container { position: relative; z-index: 1; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.map-placeholder { background: rgba(45,212,191,.08); border: 2px dashed rgba(45,212,191,.3); border-radius: var(--radius); height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.map-placeholder span { font-size: 3rem; }
.map-placeholder p { text-align: center; color: var(--muted); line-height: 1.6; }
.location-info h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; }
.loc-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: .95rem; color: var(--text); }
.loc-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.social-follow { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.social-follow p { font-size: .88rem; color: var(--muted); margin-bottom: 12px; }
.social-links { display: flex; flex-direction: column; gap: 8px; }
.social-btn { display: inline-block; background: rgba(45,212,191,.1); border: 1px solid rgba(45,212,191,.25); color: var(--lime2); font-size: .88rem; font-weight: 600; padding: 10px 16px; border-radius: 8px; transition: background .2s; }
.social-btn:hover { background: rgba(45,212,191,.2); }

/* Menu */
.menu-section { background: var(--dark); }
.menu-category { margin-bottom: 40px; }
.menu-cat-header { font-size: 1.1rem; font-weight: 800; color: var(--lime); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(45,212,191,.2); letter-spacing: .02em; }
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.menu-item:last-child { border-bottom: none; }
.menu-item-info h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.menu-item-info p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.5; max-width: 480px; }
.menu-price { font-size: 1.1rem; font-weight: 800; color: var(--lime); flex-shrink: 0; }
.menu-note { text-align: center; color: rgba(255,255,255,.4); font-size: .9rem; margin-top: 8px; }

/* Schedule */
.schedule-section { background: var(--cream); }
.schedule-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.sched-day { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px 18px; }
.sched-day.today-day { border-color: var(--lime); background: rgba(45,212,191,.06); }
.sched-day-name { font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.today-chip { background: var(--lime); color: #0d1a1a; font-size: .65rem; padding: 2px 8px; border-radius: 100px; font-weight: 800; }
.sched-location { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.sched-hours { font-size: .82rem; color: var(--muted); }

/* Order */
.order-section { background: var(--dark2); }
.order-form { max-width: 680px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-full { margin-bottom: 18px; }
label { font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.7); }
input, select, textarea { font-family: var(--font); font-size: .95rem; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12); border-radius: 8px; color: var(--white); padding: 12px 14px; outline: none; width: 100%; transition: border-color .2s; }
input:focus, textarea:focus { border-color: var(--orange); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.25); }
textarea { resize: vertical; min-height: 110px; }
.order-note { font-size: .82rem; color: rgba(255,255,255,.35); margin-top: 12px; }

/* Footer */
.footer { background: var(--dark); padding: 32px 0; border-top: 1px solid rgba(45,212,191,.12); }
.footer-inner { text-align: center; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.footer-brand { color: #fff; font-size: 1.1rem; font-weight: 600; display: flex; gap: 8px; align-items: center; }
.footer-brand strong { font-weight: 900; }
.footer-inner p { color: rgba(255,255,255,.38); font-size: .85rem; }
.footer-copy { font-size: .8rem !important; color: rgba(255,255,255,.2) !important; }
.footer-copy a { color: var(--orange); }

/* Responsive */
@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .location-grid { grid-template-columns: 1fr; }
    .schedule-grid { grid-template-columns: repeat(2, 1fr); }
    .schedule-grid .sched-day:last-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .schedule-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; position: fixed; inset: 0; background: rgba(28,10,0,.98); flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
