/* THEME: Fiesta Mexican — vibrant red/green/yellow */
:root {
    --th-primary: #C8102E;
    --th-secondary: #006847;
    --th-accent: #F4D03F;
    --th-bg: #fff9f0;
    --th-card: #ffffff;
    --th-text: #1f1f1f;
    --th-muted: #666;
    --th-font: 'Poppins', sans-serif;
}
body { background: var(--th-bg) !important; }
header {
    background: linear-gradient(90deg, var(--th-primary) 0%, var(--th-primary) 33%, var(--th-accent) 33%, var(--th-accent) 66%, var(--th-secondary) 66%) top/100% 4px no-repeat, #fff !important;
    border-bottom: 1px solid #eee;
    padding-top: 4px;
}
nav ul li a { font-family: var(--th-font); font-weight: 700; color: var(--th-text) !important; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.5px; }
nav ul li a:hover { color: var(--th-primary) !important; }
nav ul li a::after { background: var(--th-primary) !important; }
.cta-button {
    background: var(--th-primary) !important;
    color: var(--th-accent) !important;
    border: 2px solid var(--th-accent) !important;
    border-radius: 50px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-button:hover { background: var(--th-accent) !important; color: var(--th-primary) !important; border-color: var(--th-primary) !important; }
