:root {
    color-scheme: light dark;
    --bg: #000000;
    --fg: #e6e6e6;
    --primary: #a855f7;
    --secondary: #8644C5;
    --video-blur: 10px;
    --video-purple-filter: grayscale(1) sepia(1) hue-rotate(230deg) saturate(8) brightness(0.82) contrast(1.2);
}

body {
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.05;
}

.page {
    position: relative;
    z-index: 1;
}

.bg-video {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--bg);
}

.bg-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.bg-video__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    filter: blur(var(--video-blur)) var(--video-purple-filter);
    opacity: 0.3;
}

@media (prefers-reduced-motion: reduce) {
    .bg-video {
        display: none;
    }
}

a {
    color: var(--fg);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

.nav-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 0 0.8rem;
}

::selection {
    background: color-mix(in srgb, var(--primary) 35%, transparent);
}

:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
}

h1, h2, h3 {
    text-transform: uppercase;
}

h1 {
    font-size: 5rem;
    text-transform: uppercase;
    color: var(--primary);
}

.social-bar {
    position: fixed;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 1000;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #111;
    font-size: 1.7rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.18);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}
.social-icon:hover {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.12);
}

h3.separator {
    margin: 2rem 0 1rem 0;
}


.events img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.spacer {
    min-height: 100px;
}

footer {
    background: var(--primary);
    color: #000000;
}

footer a {
    color: #000000;
}

footer a:hover {
    color: var(--fg);
}

#banner {
    padding: 30vh 0px;
}

#banner h1 {
    color: black;
    padding: 5px 15vw 5px 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
}

#banner h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: 100%;
    background: var(--primary);
    z-index: -1;
    border-radius: inherit;
    animation: banner-1 5s linear infinite alternate;
}


@keyframes banner-1 {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -3vw;
    }
}

#banner h2 {
    margin-left: 50px;
    color: black;
    padding: 5px 20vw 5px 20px;
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
}

#banner h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 100%;
    background: var(--secondary);
    z-index: -1;
    border-radius: inherit;
    /* animation: banner-2 7s linear alternate; */

}


@keyframes banner-2 {
    0% {
        margin-left: -3vw;
    }

    100% {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    #banner h1::before {
        width: 300px;
    }

    #banner h2::before {
        width: 250px;
    }
}