/* =========================
MUSIC PAGE
========================= */

.music {

    position: relative;

    min-height: 100svh;

    overflow: hidden;

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

    text-align: center;

    padding: 140px 20px 100px;
}

/* =========================
BACKGROUND
========================= */

.music-bg {

    position: absolute;
    inset: -40px;

    background-image:
        url('../../assets/images/artist/ethan-needham-bass.png');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: 0.75;

    filter: blur(10px);

    transform: scale(1.08);

    z-index: 0;
}

.music::after {

    content: '';

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.78)
        );

    z-index: 1;
}

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

.music-inner {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1000px;

    padding: 20px;
}

.music-inner h1 {

    font-family: var(--font-display);

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

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: 0.04em;

    text-transform: uppercase;

    color: white;
}

/* =========================
SIGNAL TEXT
========================= */

.music-intro {

    margin-top: 24px;

    font-family: var(--font-mono);

    font-size: 0.8rem;

    font-weight: 400;

    letter-spacing: 0.35em;

    text-transform: uppercase;

    opacity: 0.55;
}

.music-intro::before {

    content: '';

    display: block;

    width: 40px;
    height: 1px;

    margin: 0 auto 14px;

    background: rgba(255, 255, 255, 0.35);
}

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

@media (max-width: 768px) {

    .music {

        padding: 120px 20px 80px;
    }

    .music-inner h1 {

        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .music-intro {

        font-size: 0.7rem;

        letter-spacing: 0.2em;
    }

    .music-message {

        margin-top: 40px;

        font-size: 0.95rem;
    }

    .music-bg {

        filter: blur(8px);

        opacity: 0.8;
    }

}