/* ==========================================================================
   Albums Section (Home)
   ========================================================================== */
.albums {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.album-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.album-link:hover {
    text-decoration: none;
}

.album-link:hover .album-square {
    transform: rotate(-1.5deg) scale(1.04);
}

.album-square {
    width: 240px;
    height: 240px;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
    /* No fancy glow — just a plain flat shadow like a real object */
    box-shadow:
        3px 3px 0px rgba(0,0,0,0.35);
}

/* Very subtle top-left sheen — hand-painted feel, not gloss */
.album-square::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 100%
    );
    pointer-events: none;
}

.album-label {
    font-family: var(--font-ui);
    color: var(--color-text);
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    color: var(--color-link);
    text-decoration: underline;
}

/* ==========================================================================
   Members Section (Home)
   ========================================================================== */
.members-section {
    text-align: center;
    width: 100%;
}

.section-heading {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: italic;
}

.members-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Plain, minimal member card — no glass, no shadows */
.member-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: var(--transition);
}

.member-card:hover {
    transform: none;
}

.member-photo {
    width: 160px;
    height: 160px;
    background-color: #d8d8d8;
    /* No border-radius — flat square */
    border-radius: 0;
    margin-bottom: 10px;
    /* Plain inset to simulate a photo placeholder */
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}

.member-name {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.member-bio {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    font-style: italic;
    min-height: 2.5em;
    font-weight: 400;
    line-height: 1.4;
}

.member-socials {
    font-family: var(--font-ui);
    font-size: 0.75rem;
}

.member-socials a {
    color: var(--color-link);
    font-weight: 400;
    text-decoration: underline;
}

.member-socials a:hover {
    color: var(--color-link-hover);
}

.member-socials a:visited {
    color: var(--color-link-visited);
}
