/* ======================
   Simon's Tacos — Demo
   realmtoybox.com
   ====================== */

:root {
    --red: #c0392b;
    --red-dark: #922b21;
    --green: #1e8449;
    --green-dark: #145a32;
    --cream: #fdf8f0;
    --warm-white: #fffaf4;
    --charcoal: #1a1a1a;
    --dark: #111111;
    --mid: #555555;
    --gold: #d4a017;
    --border: #e8ddd0;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --radius: 6px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--red);
    transition: background 0.3s;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 0.04em;
}

.nav-logo span {
    color: var(--red);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--red);
    color: #fff !important;
    padding: 0.4rem 1rem;
    border-radius: var(--radius);
}

.nav-cta:hover {
    background: var(--red-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========== HERO ========== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(0, 0, 0, 0.78) 0%, rgba(192, 57, 43, 0.55) 50%, rgba(0, 0, 0, 0.85) 100%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.015) 40px,
            rgba(255, 255, 255, 0.015) 80px),
        linear-gradient(135deg, #1a0a08 0%, #2c0d0a 40%, #0d1a0e 100%);
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 7rem);
    color: #fff;
    line-height: 1;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== MENU STRIP ========== */
.menu-strip {
    background: var(--red);
    padding: 0.9rem 1.5rem;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-strip::-webkit-scrollbar {
    display: none;
}

.menu-strip span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ========== SECTION BASE ========== */
.section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    color: var(--charcoal);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.section-title.light {
    color: #fff;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--mid);
    margin-bottom: 2.5rem;
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.75);
}

/* ========== MENU SECTION ========== */
.menu-section {
    background: var(--cream);
}

.menu-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--mid);
    padding: 0.6rem 1.4rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--red);
}

.tab-btn.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.menu-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.menu-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.menu-item.featured {
    border-color: var(--red);
    border-width: 2px;
}

.menu-item-badge {
    position: absolute;
    top: -1px;
    right: 1rem;
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 0 0 4px 4px;
}

.menu-item-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: 0.35rem;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.5;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: var(--charcoal);
    color: #fff;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.about-tags span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--red);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.04em;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-quote {
    background: var(--red);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ========== LOCATIONS ========== */
.locations-section {
    background: var(--dark);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.2s;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.07);
}

.location-icon {
    font-size: 2rem;
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.04em;
}

.location-addr {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-hours {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.location-hours strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.location-hours span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.location-phone {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.footer {
    background: #0a0a0a;
    border-top: 2px solid var(--red);
    padding: 2.5rem 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.footer-logo span {
    color: var(--red);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.78rem;
}

.footer-legal a {
    color: var(--red);
    opacity: 0.8;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 1.5rem;
    }

    .nav-cta {
        margin: 0.5rem 1.5rem;
        display: block;
        text-align: center;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .menu-strip {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .menu-tabs {
        flex-wrap: wrap;
    }
}
