/* CHILIPALOOZA 2026 */

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

:root {
    --bg: #000000;
    --title: #f9e4c0;
    --red: #ee2424;
    --yellow: #fdd43a;
    --text: #f9e4c0;
    --muted: rgba(249, 228, 192, 0.6);
}

body {
    font-family: 'Barlow Condensed', 'Avenir Next Condensed', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* TOP NAV */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 24px 24px 16px;
    max-width: 700px;
    margin: 0 auto;
}

.top-nav a {
    flex: 1;
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--title);
    font-size: 24.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.05;
    padding: 8px 8px;
    transition: color 0.2s;
}

.top-nav a:hover {
    color: var(--yellow);
}

.nav-divider {
    width: 2px;
    height: 36px;
    background: var(--red);
    flex-shrink: 0;
}

/* HERO */
.hero {
    text-align: center;
    padding: 24px 24px 48px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-logo {
    width: clamp(240px, 50vw, 380px);
    height: auto;
    margin-bottom: 20px;
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 74.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--title);
    text-transform: uppercase;
}

.sep-yellow {
    color: var(--yellow);
    font-weight: 400;
}

.hero-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 29.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--title);
    text-transform: uppercase;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hero-free {
    font-size: 27.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--yellow);
    text-transform: uppercase;
    margin-top: 20px;
}

.hero-note {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.5;
    margin-top: 8px;
}

/* SPONSORS */
.sponsors {
    background: #ffffff;
    padding: 48px 24px 56px;
    text-align: center;
}

.sponsors-title {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 32px;
}

.sponsors-img {
    max-width: 100%;
    height: auto;
}

/* FOOTER */
.footer {
    padding: 40px 24px 28px;
    text-align: center;
    border-top: 1px solid rgba(249, 228, 192, 0.1);
}

.footer-presented {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--muted);
    margin-bottom: 4px;
}

.footer-org {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.footer a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--muted);
}

/* RESPONSIVE */

/* Tablet / small desktop */
@media (max-width: 768px) {
    .top-nav {
        padding: 20px 16px 14px;
    }

    .top-nav a {
        font-size: 21px;
        padding: 6px 6px;
    }

    .nav-divider {
        height: 32px;
    }

    .hero-date {
        font-size: 58px;
        gap: 12px;
    }

    .hero-info {
        font-size: 24px;
        gap: 8px;
    }

    .hero-free {
        font-size: 23px;
    }

    .hero-note {
        font-size: 15px;
        max-width: 480px;
    }

    .sponsors {
        padding: 40px 20px 48px;
    }

    .sponsors-title {
        margin-bottom: 24px;
    }
}

/* Large phones */
@media (max-width: 520px) {
    .top-nav {
        padding: 16px 12px 12px;
    }

    .top-nav a {
        font-size: 17px;
        padding: 6px 4px;
        letter-spacing: 0.04em;
    }

    .nav-divider {
        height: 28px;
    }

    .hero {
        padding: 16px 16px 36px;
    }

    .hero-logo {
        width: clamp(200px, 65vw, 320px);
        margin-bottom: 14px;
    }

    .hero-date {
        font-size: 44px;
        gap: 10px;
    }

    .hero-info {
        font-size: 19px;
        gap: 6px;
        line-height: 1.5;
    }

    .hero-free {
        font-size: 19px;
        letter-spacing: 0.08em;
        margin-top: 16px;
    }

    .hero-note {
        font-size: 14px;
        padding: 0 8px;
    }

    .sponsors {
        padding: 32px 16px 40px;
    }

    .sponsors-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .footer {
        padding: 32px 16px 24px;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .top-nav {
        padding: 14px 8px 10px;
        gap: 0;
    }

    .top-nav a {
        font-size: 14.5px;
        padding: 4px 2px;
        letter-spacing: 0.03em;
    }

    .nav-divider {
        height: 24px;
        margin: 0 2px;
    }

    .hero {
        padding: 12px 12px 32px;
    }

    .hero-logo {
        width: clamp(180px, 70vw, 280px);
        margin-bottom: 10px;
    }

    .hero-date {
        font-size: 36px;
        gap: 8px;
    }

    .hero-info {
        font-size: 16px;
        gap: 5px;
        flex-direction: column;
        line-height: 1.3;
    }

    .hero-info .sep-yellow {
        display: none;
    }

    .hero-free {
        font-size: 17px;
        letter-spacing: 0.06em;
        margin-top: 14px;
    }

    .hero-note {
        font-size: 13px;
        line-height: 1.45;
        padding: 0 4px;
    }

    .sponsors {
        padding: 28px 12px 32px;
    }

    .sponsors-title {
        font-size: 1.1rem;
        letter-spacing: 0.08em;
        margin-bottom: 16px;
    }

    .footer {
        padding: 28px 12px 20px;
    }

    .footer-org {
        font-size: 0.9rem;
    }
}

/* Very small phones (320px, SE, etc.) */
@media (max-width: 340px) {
    .top-nav a {
        font-size: 13px;
        letter-spacing: 0.02em;
    }

    .nav-divider {
        height: 22px;
    }

    .hero-date {
        font-size: 30px;
        gap: 6px;
    }

    .hero-info {
        font-size: 14.5px;
    }

    .hero-free {
        font-size: 15px;
    }
}
