/* =========================================
   Solo Page — Supplemental Styles
   Extends ../index.css
   ========================================= */

/* =========================================
   Page Hero Banner
   ========================================= */
.page-hero {
    height: 45vh;
    min-height: 260px;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5)  0%,
        rgba(0, 0, 0, 0.15) 55%,
        rgba(0, 0, 0, 0.6)  100%
    );
    pointer-events: none;
}

/* Photo box overlaid on the hero */
.hero-photo {
    position: absolute;
    top: calc(50% + 30px);
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(45vh - 160px);
    width: auto;
    max-width: calc(100% - 48px);
    object-fit: contain;
    border: 3px solid var(--color-accent-dim);
    border-radius: 3px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.75);
    z-index: 1;
    display: block;
}

/* =========================================
   Albums Section
   ========================================= */
.albums-section {
    background-color: #0a0a0a;
    padding: 72px 48px 56px;
}

.albums-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section heading with gold rule */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 52px;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--color-accent);
    margin: 14px auto 0;
}

/* =========================================
   Album Cards Grid
   ========================================= */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* =========================================
   Individual Album Card
   ========================================= */
.album-card {
    display: block;
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    overflow: hidden;
    transition:
        transform      var(--transition),
        border-color   var(--transition),
        box-shadow     var(--transition);
}

.album-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent-dim);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

/* Square cover art */
.album-cover {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

/* Card text area */
.album-info {
    padding: 16px 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.album-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 6px;
}

.album-year {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--color-accent);
}

/* =========================================
   Videos Section
   ========================================= */
.solo-videos {
    background-color: #0a0a0a;
    padding: 0 48px 96px;
}

.solo-videos-inner {
    max-width: 900px;
    margin: 0 auto;
}

.vimeo-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================
   Responsive — Tablet (≤ 900px)
   ========================================= */
@media (max-width: 900px) {
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .albums-section {
        padding: 56px 32px 48px;
    }

    .solo-videos {
        padding: 0 32px 72px;
    }
}

/* =========================================
   Responsive — Mobile (≤ 600px)
   ========================================= */
@media (max-width: 600px) {
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .albums-section {
        padding: 48px 20px 40px;
    }

    .solo-videos {
        padding: 0 20px 64px;
    }

    .album-info {
        padding: 12px 12px 14px;
    }

    .album-title {
        font-size: 0.72rem;
    }
}

/* =========================================
   iOS / Touch: disable parallax
   ========================================= */
@media (hover: none) and (pointer: coarse) {
    .page-hero {
        background-attachment: scroll;
    }
}
