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

.music-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 9rem 8vw 5rem;
    background:
        radial-gradient(
            circle at 68% 35%,
            rgba(202, 180, 130, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 30% 75%,
            rgba(110, 125, 165, 0.1),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #090a0d 0%,
            #10121a 50%,
            #08090c 100%
        );
}

.music-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px
        );
    background-size: 90px 90px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black
        );
    pointer-events: none;
}

.music-hero-content {
    width: 100%;
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.music-eyebrow {
    margin: 0 0 1rem;
    color: #c9aa6a;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.music-hero h1 {
    margin: 0 0 1.5rem;
    color: #f4f2ec;
    font-size: clamp(4rem, 10vw, 8.5rem);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.music-intro {
    max-width: 700px;
    margin: 0;
    color: #b8b6b0;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.75;
}


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

.music-page {
    min-height: 50vh;
    padding: 5rem 8vw 8rem;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(201, 170, 106, 0.05),
            transparent 28%
        ),
        #090a0d;
}

.albums-grid {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 3rem;
}


/* =========================================================
   ALBUM CARDS
========================================================= */

.album-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.015)
        );
    transition:
        transform 350ms ease,
        border-color 350ms ease,
        background 350ms ease,
        box-shadow 350ms ease;
}

.coming-soon {
    margin-top: 2rem;
    color: rgba(244, 242, 236, 0.6);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.album-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 170, 106, 0.38);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.02)
        );
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.24);
}

.album-card-link,
.album-card-static {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.album-card-link {
    color: inherit;
    text-decoration: none;
}

.album-card-link:visited {
    color: inherit;
}

.album-card-link:focus-visible {
    outline: 2px solid #c9aa6a;
    outline-offset: -4px;
}


/* =========================================================
   ALBUM ARTWORK
========================================================= */

.album-cover {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
    background: #0d0e13;
}

.album-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 900ms ease,
        filter 500ms ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.055);
    filter: brightness(1.04);
}


/* =========================================================
   ALBUM INFORMATION
========================================================= */

.album-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.album-type {
    margin: 0 0 0.9rem;
    color: #c9aa6a;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.album-card h2 {
    margin: 0 0 1rem;
    color: #f4f2ec;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 400;
}

.album-description {
    margin: 0;
    color: #b8b6b0;
    line-height: 1.8;
}

.album-action {
    display: inline-block;
    margin-top: auto;
    padding-top: 2rem;
    color: #c9aa6a;
    letter-spacing: 0.04em;
    text-align: center;
}

.album-card:hover .album-action {
    transform: translateX(6px);
    color: #e5ca92;
}

.album-action-muted {
    color: #898983;
}

.album-card:hover .album-action-muted {
    color: #aaa9a2;
    transform: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {
    .music-hero {
        min-height: 55vh;
        padding:
            8rem 1.5rem
            4rem;
    }

    .music-page {
        padding:
            4rem 1.5rem
            6rem;
    }

    .albums-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 520px) {
    .music-hero {
        min-height: 50vh;
    }

    .album-card-content {
        padding: 1.5rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .album-card,
    .album-cover img,
    .album-action {
        transition: none;
    }

    .album-card:hover,
    .album-card:hover .album-action {
        transform: none;
    }

    .album-card:hover .album-cover img {
        transform: none;
    }
}

/* Future releases managed through Studio */
.release-date {
    margin: 1.2rem 0 0;
    color: #898983;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
