:root {
    /* Colors pulled from your logo */
    --brand-red: #F94A3B;
    --brand-green: #41f93b;
    --brand-yellow: #FFC82D;
    --off-white: #F0F0F0;
    --ink-black: #111111;

    /* Design logic */
    --border-thick: 4px solid var(--ink-black);
    --box-shadow-hard: 8px 8px 0px var(--ink-black);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--off-white);
    color: var(--ink-black);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.95;
}

/* --- UTILITIES --- */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.tilt-left {
    transform: rotate(-2deg);
}

.tilt-right {
    transform: rotate(2deg);
}

.btn {
    display: inline-block;
    background: var(--brand-red);
    color: white;
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    padding: 15px 30px;
    text-decoration: none;
    border: var(--border-thick);
    box-shadow: var(--box-shadow-hard);
    transition: all 0.1s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px var(--ink-black);
}

.btn:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--ink-black);
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    background: var(--ink-black);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: var(--border-thick);
}

nav a {
    color: white;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--brand-yellow);
    text-decoration: underline;
}

nav a.active {
    color: var(--brand-red);
}


/* --- HERO SECTION --- */
header.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 0;
    position: relative;
}

.logo-container {
    width: clamp(300px, 40vw, 600px);
    margin-bottom: 2rem;
    animation: float 4s ease-in-out infinite;
}

.logo-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(12px 12px 0px rgba(0, 0, 0, 1));
}

.hero-text {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--ink-black);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-sub {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: bold;
    background: var(--brand-yellow);
    padding: 10px 20px;
    border: var(--border-thick);
    transform: rotate(-1deg);
    display: inline-block;
}

/* --- BLACK DIVIDER BAR --- */
.black-divider {
    background: var(--ink-black);
    height: 60px;
    width: 110%;
    margin-left: -5%;
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
    transform: rotate(2deg);
    margin-top: 30px;
    margin-bottom: 80px;
}

/* --- CONTENT GRID --- */
.grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 0;
    align-items: center;
}

.card {
    background: white;
    border: var(--border-thick);
    box-shadow: var(--box-shadow-hard);
    padding: 40px;
    position: relative;
}

.card.yellow {
    background: var(--brand-yellow);
}

.card.red {
    background: var(--brand-red);
    color: white;
}

.card.white {
    background: white;
}

.card h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.highlight {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 60px 20px;
    background: var(--ink-black);
    color: white;
    margin-top: 50px;
}

footer .footer-links {
    margin-bottom: 20px;
}

footer a {
    color: var(--brand-yellow);
    font-size: 1.5rem;
    font-family: 'Anton', sans-serif;
    text-decoration: none;
    margin: 0 15px;
    display: inline-block;
}

footer a:hover {
    text-decoration: underline;
}

footer .legal-links {
    margin-top: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
}

footer .legal-links a {
    color: #888;
    font-size: 0.9rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* --- MODAL --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: var(--off-white);
    border: var(--border-thick);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.5);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    font-family: 'Anton';
    cursor: pointer;
    background: none;
    border: none;
    color: var(--brand-red);
}

/* --- ANIMATIONS --- */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .logo-container {
        width: 90%;
    }

    .grid-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text {
        line-height: 1;
    }

    .black-divider {
        transform: rotate(0deg);
        width: 100%;
        margin-left: 0;
    }

    header.hero {
        min-height: 50vh;
    }
}