/* ========================
   La Plaza Fiesta — Demo
   realmtoybox.com
   ======================== */

:root {
    --green: #1a5c2a;
    --green-dark: #113d1b;
    --green-light: #236b31;
    --gold: #c8960a;
    --gold-light: #e8b020;
    --cream: #fdf9f0;
    --warm-white: #fffdf7;
    --charcoal: #1c1c1c;
    --dark: #111111;
    --mid: #5a5a5a;
    --red-accent: #c0392b;
    --border: #e6ddd0;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --radius: 8px;
    --shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
}

*,
*::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.8rem 2rem;
    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(--green);
    color: #fff;
    border-color: var(--green);
}

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

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

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

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 92, 42, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 3px solid var(--gold);
    transition: background 0.3s;
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

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

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

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

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta {
    background: var(--gold);
    color: var(--charcoal) !important;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius);
    font-weight: 700 !important;
}

.nav-cta:hover {
    background: var(--gold-light);
    color: var(--charcoal) !important;
}

.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.72) 0%, rgba(26, 92, 42, 0.55) 50%, rgba(0, 0, 0, 0.82) 100%),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 60px,
            rgba(200, 150, 10, 0.04) 60px,
            rgba(200, 150, 10, 0.04) 120px),
        linear-gradient(135deg, #0a1f0f 0%, #1a3520 50%, #0d0d08 100%);
}

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

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

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    color: #fff;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

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

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

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

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

.fiesta-strip span {
    color: var(--green-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

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

.section-flag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.2rem;
    margin-bottom: 0.75rem;
}

.section-flag.light {
    color: var(--gold-light);
    border-color: rgba(232, 176, 32, 0.4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 0.6rem;
    font-weight: 900;
}

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

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

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

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

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

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    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(--green);
}

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

.tab-content {
    display: none;
}

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

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

.menu-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem 1.6rem;
    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(--gold);
    border-width: 2px;
}

.menu-item-badge {
    position: absolute;
    top: -1px;
    right: 1rem;
    background: var(--gold);
    color: var(--green-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: 0 0 5px 5px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
}

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

/* ========== DRINKS SECTION ========== */
.drinks-section {
    background: linear-gradient(160deg, var(--green-dark) 0%, #0f3317 50%, #1a3520 100%);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.drink-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(232, 176, 32, 0.2);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: background 0.2s, border-color 0.2s;
}

.drink-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(232, 176, 32, 0.5);
}

.drink-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.drink-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.drink-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
}

.drinks-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    font-style: italic;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: #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: var(--green-dark);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    font-weight: 900;
}

.about-text p {
    color: var(--mid);
    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: var(--cream);
    border: 1px solid var(--border);
    color: var(--green-dark);
    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: var(--cream);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    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: var(--green-dark);
    line-height: 1;
    font-weight: 900;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--mid);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-quote {
    background: var(--green);
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

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

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1.5rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.location-block h3 {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 0.6rem;
}

.location-block p {
    color: var(--mid);
    font-size: 0.95rem;
    line-height: 1.7;
}

.location-block a {
    color: var(--green);
}

.location-block a:hover {
    color: var(--green-dark);
}

.hours-table {
    border-collapse: collapse;
    width: 100%;
}

.hours-table td {
    padding: 0.25rem 0.5rem 0.25rem 0;
    font-size: 0.92rem;
    color: var(--mid);
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--charcoal);
    width: 110px;
}

.location-cta-card {
    background: var(--green);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-icon {
    font-size: 2.5rem;
}

.location-cta-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
}

.location-cta-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.7;
}

.location-cta-card .btn-primary {
    background: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
    align-self: flex-start;
}

.location-cta-card .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--green-dark);
    border-top: 3px solid var(--gold);
    padding: 2.75rem 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

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

.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.5);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

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

.footer-legal a {
    color: var(--gold);
    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: 62px;
        left: 0;
        right: 0;
        background: var(--green-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;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fiesta-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;
    }

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