/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   ENTER SCREEN
========================================================= */

.landing {
    position: fixed;
    inset: 0;
    z-index: 100;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #000;
    color: #fff;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

.landing.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.landing h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.85;
    letter-spacing: -0.07em;
    font-weight: 700;
}

.landing p {
    margin-top: 20px;

    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;

    opacity: 0.7;
}


/* =========================================================
   CIRCULAR ENTER BUTTON
   ORIGINAL VERSION — UNCHANGED
========================================================= */

#enterButton {
    position: relative;

    width: 105px;
    height: 105px;

    margin-top: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;

    background: transparent;
    color: #fff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;

    cursor: pointer;

    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}


/* Animated outer ring */

#enterButton::before {
    content: "";

    position: absolute;
    inset: -7px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    animation: enterPulse 2.2s ease-in-out infinite;
}


/* Small rotating detail */

#enterButton::after {
    content: "";

    position: absolute;
    inset: -13px;

    border-radius: 50%;

    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;

    animation: enterSpin 5s linear infinite;
}

#enterButton:hover {
    background: #fff;
    color: #000;

    transform: scale(1.06);
}

#enterButton:hover::before {
    animation-play-state: paused;
}


/* =========================================================
   ENTER BUTTON ANIMATIONS
========================================================= */

@keyframes enterPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.05;
    }
}

@keyframes enterSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   UNRELEASED SONG BUTTON
   RECTANGULAR + CONNECTED CARTOON OUTLINE
========================================================= */

#unreleasedButton {
    position: absolute;

    left: 50%;
    bottom: 15px;

    transform: translateX(-50%);

    width: min(90%, 430px);
    min-height: 62px;

    padding: 17px 30px;

    border: none;

    background: #000;
    color: #fff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.6rem;
    line-height: 1.5;

    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;

    cursor: pointer;

    /*
       Connected rectangular cartoon shape.
       The many points create an irregular,
       hand-drawn-looking perimeter.
    */
    clip-path: polygon(
        1% 18%,
        4% 12%,
        8% 14%,
        12% 9%,
        17% 12%,
        22% 7%,
        27% 11%,
        32% 6%,
        37% 10%,
        42% 7%,
        47% 11%,
        52% 6%,
        57% 10%,
        62% 7%,
        67% 11%,
        72% 6%,
        77% 10%,
        82% 7%,
        87% 12%,
        92% 9%,
        96% 14%,
        99% 11%,

        96% 20%,
        98% 27%,
        95% 34%,
        98% 41%,
        95% 48%,
        98% 55%,
        95% 62%,
        98% 69%,
        95% 76%,
        98% 84%,
        94% 91%,

        89% 88%,
        84% 94%,
        79% 90%,
        74% 95%,
        69% 90%,
        64% 96%,
        59% 91%,
        54% 95%,
        49% 90%,
        44% 96%,
        39% 91%,
        34% 95%,
        29% 90%,
        24% 94%,
        19% 89%,
        14% 94%,
        9% 90%,
        5% 93%,
        2% 86%,

        5% 78%,
        2% 70%,
        5% 62%,
        2% 54%,
        5% 46%,
        2% 38%,
        5% 30%,
        2% 23%
    );
}


/* =========================================================
   BOTSWANA-INSPIRED OUTER SHAPE
========================================================= */

#unreleasedButton::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            #75AADB 0%,
            #75AADB 35%,
            #fff 35%,
            #fff 43%,
            #000 43%,
            #000 57%,
            #fff 57%,
            #fff 65%,
            #75AADB 65%,
            #75AADB 100%
        );

    clip-path: inherit;
}


/* =========================================================
   BLACK INNER SHAPE
========================================================= */

#unreleasedButton::after {
    content: "";

    position: absolute;
    inset: 3px;

    z-index: -1;

    background: #000;

    clip-path: inherit;
}


/* =========================================================
   UNRELEASED HOVER
   STATIC — NO MOVEMENT
========================================================= */

#unreleasedButton:hover {
    color: #000;

    background: #000;

    transform: translateX(-50%);
}

#unreleasedButton:hover::after {
    background: #fff;
}


/* =========================================================
   UNRELEASED FOCUS
========================================================= */

#unreleasedButton:focus {
    outline: none;
}


/* =========================================================
   MAIN SITE
========================================================= */

#site {
    opacity: 0;
    visibility: hidden;

    background: #000;

    transition: opacity 1s ease;
}

#site.show {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   NAVIGATION
========================================================= */

nav {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 20;

    padding: 30px 5vw;

    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.7rem;

    letter-spacing: 0.15em;
    text-transform: uppercase;

    opacity: 0.75;

    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 75vh;
    min-height: 550px;

    background: #000;

    overflow: hidden;
}

.hero-photo {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #000;
}

.hero-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;

    transform: scale(1.015);
}


/* =========================================================
   SEAMLESS PHOTO FADE
========================================================= */

.hero-photo::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 30%;

    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 45%,
        #000 100%
    );

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.02) 45%,
            rgba(0, 0, 0, 0.15)
        );

    z-index: 2;

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 42px;

    z-index: 3;

    padding: 0 5vw;

    text-align: center;

    color: #fff;
}

.hero-content h2 {
    margin: 0;

    font-size: clamp(
        3rem,
        8vw,
        8rem
    );

    line-height: 0.85;

    letter-spacing: -0.065em;

    font-weight: 700;
}

.hero-content p {
    margin-top: 16px;

    font-size: 0.75rem;

    letter-spacing: 0.35em;

    text-transform: uppercase;

    opacity: 0.85;
}


/* =========================================================
   SCROLL
========================================================= */

.scroll {
    display: block;

    margin-top: 30px;

    color: #fff;

    font-size: 0.65rem;

    letter-spacing: 0.25em;

    text-transform: uppercase;

    opacity: 0.65;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

section:not(.hero) {
    padding: 120px 5vw;

    background: #000;
}


/* =========================================================
   SECTION TITLES
========================================================= */

.section-title {
    display: flex;

    align-items: baseline;
    justify-content: space-between;

    margin-bottom: 50px;
    padding-bottom: 15px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.2);
}

.section-title h2 {
    font-size:
        clamp(
            2rem,
            5vw,
            4rem
        );

    font-weight: 500;

    letter-spacing: -0.04em;
}

.section-title span {
    font-size: 0.65rem;

    letter-spacing: 0.2em;

    opacity: 0.5;
}


/* =========================================================
   RELEASE GRID
========================================================= */

.grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.release {
    display: block;
}

.release img {
    width: 100%;

    aspect-ratio: 1 / 1;

    display: block;

    object-fit: cover;

    transition: opacity 0.3s ease;
}

.release:hover img {
    opacity: 0.75;
}

.release div {
    padding-top: 15px;
}

.release h3 {
    font-size: 1rem;

    font-weight: 400;
}

.release p {
    margin-top: 5px;

    font-size: 0.65rem;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    opacity: 0.5;
}


/* =========================================================
   VIEW MORE
========================================================= */

.view-more {
    margin-top: 50px;

    text-align: center;
}

.view-more a {
    display: inline-block;

    padding-bottom: 8px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.5);

    font-size: 0.7rem;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    transition: opacity 0.3s ease;
}

.view-more a:hover {
    opacity: 0.6;
}


/* =========================================================
   VIDEOS
========================================================= */

.video-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.video {
    position: relative;

    aspect-ratio: 16 / 9;

    background: #111;

    overflow: hidden;
}

.video iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   BANDCAMP
========================================================= */

.bandcamp-feature {
    text-align: center;
}

.bandcamp-feature h2 {
    margin-bottom: 40px;

    font-size:
        clamp(
            2rem,
            5vw,
            4rem
        );

    font-weight: 500;
}

.bandcamp-link {
    display: block;

    max-width: 600px;

    margin: 0 auto;
}

.bandcamp-link img {
    width: 100%;

    display: block;

    transition: opacity 0.3s ease;
}

.bandcamp-link:hover img {
    opacity: 0.75;
}

.bandcamp-feature > p {
    margin-top: 20px;

    font-size: 0.65rem;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    opacity: 0.5;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 50px 5vw 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.15);

    background: #000;
}

.socials {
    display: flex;

    gap: 30px;

    margin-bottom: 40px;
}

.socials a {
    font-size: 0.7rem;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    opacity: 0.7;

    transition: opacity 0.3s ease;
}

.socials a:hover {
    opacity: 1;
}

footer > p {
    font-size: 0.6rem;

    letter-spacing: 0.15em;

    opacity: 0.4;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    nav {
        padding: 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.6rem;
    }


    /* HERO */

    .hero {
        height: 75vh;
        min-height: 550px;
    }

    .hero-photo img {
        object-position: center center;
    }

    .hero-photo::after {
        height: 32%;
    }

    .hero-content {
        bottom: 35px;

        padding: 0 20px;
    }

    .hero-content h2 {
        font-size:
            clamp(
                2.5rem,
                12vw,
                5rem
            );
    }

    .hero-content p {
        margin-top: 12px;

        font-size: 0.6rem;

        letter-spacing: 0.25em;
    }

    .scroll {
        margin-top: 22px;
    }


    /* ENTER BUTTON */

    #enterButton {
        width: 90px;
        height: 90px;

        margin-top: 32px;
    }


    /* UNRELEASED BUTTON */

    #unreleasedButton {
        bottom: 10px;

        width: calc(100% - 40px);

        max-width: 400px;

        min-height: 58px;

        padding: 15px 22px;

        font-size: 0.55rem;
    }


    /* SECTIONS */

    section:not(.hero) {
        padding: 80px 20px;
    }

    .section-title {
        margin-bottom: 30px;
    }


    /* RELEASES */

    .grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    /* VIDEOS */

    .video-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    /* FOOTER */

    footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .socials {
        flex-direction: column;

        gap: 15px;
    }
}
