.home {
    display: flex;
    flex-direction: column;
}

.home-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.home-hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 50%;
}

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

.home-title em {
    color: var(--text-pop);
}

.home-eyebrow,
.home-description {
    font-size: clamp(.5rem, 2vw, 1rem);
    color: var(--accent-stone);
    width: 50%;
}

.home-links {
    display: flex;
    gap: .5rem;
}

.home-playlist,
.home-media {
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: .5rem;
    padding: .3rem 1rem;
    opacity: 1;
    transition: background-color 0.2s ease, transform 0.15s ease;
    font-size: clamp(.5rem, 2vw, 1rem);
}

.home-playlist {
    background-color: var(--accent-primary);
}

.home-playlist:hover {
    transform: translateY(-2px);
    opacity: .9;
}

.home-media {
    background-color: var(--media-slider-background);
}

.home-media:hover {
    transform: translateY(-2px);
    opacity: .9;
}

.vinyl {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: clamp(250px, 40vw, 700px);
    aspect-ratio: 1 / 1;

    border-radius: 50%;
    background: repeating-radial-gradient(
        circle at center,
        #111110 0%,
        #1e1e1b 5%
    );

    animation: spin 20s linear infinite;
    flex-shrink: 1;
}

.vinyl-word {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.vinyl-word text {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    fill: rgba(255, 255, 255, 0.18);
}

.vinyl-center {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    width: 18%;
    aspect-ratio: 1 / 1;

    background-color: var(--text-pop);
    padding: 3%;
    margin: 0;
    border-radius: 50%;
}

.vinyl-dot {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 25%;
    aspect-ratio: 1 / 1;

    background-color: black;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-title {
    font-size: clamp(.6rem, 1.2vw, 1rem);
}

.vinyl-description {
    font-size: clamp(.35rem, .8vw, .65rem);
}

@keyframes spin {
    from {
    transform: rotate(0deg);
    }

    to {
    transform: rotate(360deg);
    }
}

.home-explanation {
    display: flex;
    padding: 2rem 0;
    gap: 2rem;
}

.home-what,
.home-why {
    width: 50%;
    border-radius: 1rem;
    padding: 1.5rem;
    line-height: 1.6;
}

.home-what h2,
.home-why h2 {
    margin-bottom: 1rem;
}

.home-what {
    background-color: var(--accent-bright);
}

.home-why {
    background-color: var(--accent-stone);
}

.home-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    font-size: 150%;
    font-style: italic;
    text-align: center;
    line-height: 1.5;
    background-color: var(--accent-primary);
    border-radius: 1rem;
    margin: 1rem 0;
}

.home-audience {
    display: flex;
    padding: 2rem 0;
    gap: 2rem;
}

.home-for .good {
    color: var(--text-good);
}

.home-not .bad {
    color: var(--text-bad);
}

.home-for,
.home-not {
    width: 50%;
    border-radius: 1rem;
    padding: 1.5rem;
    line-height: 1.6;
    background-color: var(--media-slider-background);
}

.home-for h2,
.home-not h2 {
    margin-bottom: 1rem;
}

.home-for ul,
.home-not ul {
    list-style: none;
    margin-left: 1.25rem;
}

.home-for li,
.home-not li {
    margin-bottom: 1rem;
}

.home-purpose {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    text-align: center;
}

.home-purpose > p {
    color: var(--accent-stone);
}

.home-purpose h2 {
    margin-bottom: 1rem;
}

.home-principles {
    display: flex;
    gap: 2rem;
}

.home-principle1,
.home-principle2,
.home-principle3 {
    flex: 1;
    padding: 1.5rem;
    border-radius: 1rem;
    line-height: 1.6;
    text-align: left;
}

.home-principle1 {
    background-color: var(--accent-stone);
}

.home-principle2 {
    background-color: var(--accent-primary);
}

.home-principle3 {
    background-color: var(--accent-bright);
}

.home-note {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background-color: var(--accent-secondary);
    border-radius: .5rem;
    line-height: 1.6;
    font-size: 90%;
    color: var(--text-secondary);
}

/* mobile */
@media (max-width: 1020px) {

    .home-hero {
        flex-direction: column;
        height: auto;
        gap: 2rem;
        text-align: center;
        padding: 1rem 0;
    }

    .home-hero-text {
        width: 100%;
        align-items: center;
    }

    .home-eyebrow,
    .home-description {
        width: 50%;
    }

    .home-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .vinyl {
        width: clamp(220px, 75vw, 400px);
    }

    .home-explanation {
        font-size: 50%;
        gap: 1rem;
        padding: 0;
    }

    .home-what,
    .home-why {
        width: 100%;
    }

    .home-quote {
        padding: 2rem 1rem;
        font-size: 100%;
    }

    .home-audience {
        gap: 1rem;
        font-size: 50%;
        padding: 0;
    }

    .home-for,
    .home-not {
        width: 100%;
        line-height: 1.3;
    }

    .home-for ul,
    .home-not ul {
        margin-left: .25rem;
    }

    .home-purpose {
        padding: 2rem 0 1rem 0;
    }

    .home-principles {
        flex-direction: column;
        gap: 1rem;
    }

    .home-note {
        margin-top: 0;
        font-size: 60%;
    }
}