@font-face {
    font-family: 'Mango Grotesque';
    src: url('fonts/Mango Grotesque-VF.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 700;
    font-display: swap;
}

:root {
    --reddish-white: #ffeef0;
    --red: #fe3636;
    --salmon-red: #FF888E;
    --pink: #ff289a;
    --dark-blue: #0401d8;
    --light-blue: #201dfc;
    --black: #111111;
    --viola: #5b59fd;
    --dark-viola: #4848ff;
    --yellow: #febc34;
    --light-salmon-red: #ffa4b1;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--red);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-blue);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    width: 90%;
    max-width: 800px;
    height: auto;
    clip-path: inset(0 100% 0 0);
}

@media (max-width: 768px) {
    .loader-logo {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        max-width: 300px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Mango Grotesque', sans-serif;
}

.nav-container {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    height: 4rem;
    z-index: 100;
}

.nav-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 55%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 100rem;
    opacity: 0;
}

.nav-pill {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-pill-left {
    left: 1rem;
}

.nav-pill-right {
    right: 1rem;
}

.nav-logo {
    height: 2rem;
}

.nav-link {
    font-family: 'Mango Grotesque', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    text-box: trim-both cap alphabetic;
    text-decoration: none;
}

.hero {
    height: 100vh;
    width: 100%;
    background-color: var(--red);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    pointer-events: none;
    opacity: 0.45;
    mask-image: linear-gradient(to bottom, black 0%, black 66%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 66%, transparent 100%);
}

.hero-svg {
    width: 100%;
    height: 100%;
}

.hero-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-logo {
    width: 400px;
    height: auto;
    margin-bottom: -1rem;
    position: relative;
    z-index: 2;
}

.hero-year {
    font-family: 'Mango Grotesque', sans-serif;
    font-weight: 700;
    font-size: 24rem;
    color: white;
    margin: 0;
    line-height: 1;
    text-box: trim-both cap alphabetic;
}

.hero-pills {
    display: flex;
    gap: 0;
    margin-top: -1rem;
    z-index: 2;
}

.pill {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    color: white;
    background-color: var(--light-blue);
    padding: 0.4rem 1.2rem;
    border-radius: 100rem;
    text-transform: uppercase;
}

.hero-banner {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background-color: white;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    z-index: 10;
}

.early-bird-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: white;
    background-color: var(--light-blue);
    border: none;
    border-radius: 100rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.marquee {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.marquee-content {
    font-family: 'Mango Grotesque', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    text-transform: uppercase;
    white-space: nowrap;
    padding-top: 0.2em;
    animation: marquee 20s linear infinite;
}

.marquee-divider {
    height: 0.6em;
    vertical-align: middle;
    position: relative;
    top: -0.05em;
}

.strikethrough-red {
    position: relative;
    display: inline-block;
}

.strikethrough-red::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 40%;
    height: 8px;
    background-color: #e53935;
    transform: rotate(-12deg);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sticker-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.trail-image {
    position: absolute;
    width: 200px;
    height: auto;
    border-radius: 1rem;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity, left, top;
}

.menu-card {
    position: fixed;
    top: 1rem;
    left: 1rem;
    bottom: 1rem;
    width: calc(33.33% - 2rem);
    background-color: white;
    border-radius: 1rem;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    visibility: hidden;
    clip-path: inset(0 100% 0 0 round 1rem);
}

.menu-item {
    font-family: 'Mango Grotesque', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    text-box: trim-both cap alphabetic;
}

.menu-item:hover {
    color: var(--red);
}

.footer {
    padding: 1rem;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.footer-card {
    width: 100%;
    background-color: white;
    border-radius: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-title {
    font-family: 'Mango Grotesque', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    text-transform: uppercase;
    text-box: trim-both cap alphabetic;
}

.footer-text {
    font-size: 1rem;
    color: var(--black);
    margin: 0;
    line-height: 1.5;
}

.footer-link {
    font-size: 1rem;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--red);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--black);
    border-radius: 50%;
    color: white;
    transition: background-color 0.2s ease;
}

.footer-social-link:hover {
    background-color: var(--red);
}

.footer-social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-logo {
    width: 100%;
    height: auto;
    margin-top: 2rem;
}

.video-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-title {
    font-family: 'Mango Grotesque', sans-serif;
    font-weight: 700;
    font-size: 8rem;
    color: white;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Tablet */
@media (max-width: 768px) {
    .nav-container {
        height: 4.5rem;
    }

    .nav-bg {
        width: calc(100% - 2rem);
        opacity: 1 !important;
    }

    .nav-pill-left {
        left: 2rem !important;
    }

    .nav-pill-right {
        right: 2rem !important;
    }

    .nav-link {
        font-size: 2.8rem;
    }

    .nav-logo {
        height: 2rem;
        opacity: 1;
    }

    .hero {
        height: 100svh;
    }

    .hero-center {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-logo {
        width: 260px;
    }

    .hero-year {
        font-size: 12rem;
    }

    .hero-pills {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 0;
    }

    .pill {
        font-size: 1.6rem;
        padding: 0.3rem 1rem;
    }

    .hero-banner {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin: auto 1rem 1rem 1rem;
    }

    .marquee-content {
        font-size: 2.5rem;
    }

    .menu-card {
        width: calc(50% - 2rem);
    }

    .menu-item {
        font-size: 3rem;
    }

    .trail-image {
        width: 180px;
    }

    .sticker-container {
        z-index: 0;
    }

    .video-section {
        height: 60vh;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .video-title {
        font-size: 5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 2rem;
    }

    .footer-logo {
        margin-top: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .nav-container {
        height: 4rem;
        top: 0.5rem;
    }

    .nav-pill-left {
        left: 1.5rem !important;
    }

    .nav-pill-right {
        right: 1.5rem !important;
    }

    .nav-link {
        font-size: 2.4rem;
    }

    .nav-bg {
        width: calc(100% - 1rem);
    }

    .nav-logo {
        height: 1.8rem;
    }

    .hero {
        height: 100svh;
    }

    .hero-center {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-logo {
        width: 220px;
        margin-bottom: -0.5rem;
    }

    .hero-year {
        font-size: 10rem;
    }

    .hero-pills {
        align-items: center;
        gap: 0;
    }

    .pill {
        font-size: 1.4rem;
        padding: 0.25rem 0.8rem;
    }

    .hero-banner {
        margin: auto 0.5rem 0.5rem 0.5rem;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .marquee-content {
        font-size: 1.8rem;
    }

    .menu-card {
        width: calc(100% - 1rem);
        left: 0.5rem;
        top: 0.5rem;
        bottom: 0.5rem;
    }

    .menu-item {
        font-size: 2.5rem;
    }

    .trail-image {
        width: 140px;
    }

    .video-section {
        height: 50vh;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .video-title {
        font-size: 3rem;
    }

    .footer {
        padding: 0.5rem;
    }

    .footer-card {
        padding: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-title {
        font-size: 1.8rem;
    }

    .footer-text,
    .footer-link {
        font-size: 0.9rem;
    }

    .footer-logo {
        margin-top: 0.5rem;
    }
}