/* ─────────────────────────────────
   ALBUMS: MUSEUM SHOWCASE
   Gallery Editorial Design Language
───────────────────────────────── */

.albums-page {
    background: #fdfdfd;
    padding-bottom: 120px;
}

/* ─────────────────────────────────
   EDITORIAL HERO
───────────────────────────────── */
.albums-hero {
    height: 60vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #001219;
}

.albums-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: brightness(0.7) saturate(0.8);
}

.albums-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.albums-label {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 15px;
    display: block;
    color: var(--accent);
}

.albums-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
}

/* ─────────────────────────────────
   GALLERY CONTROLS
───────────────────────────────── */
.gallery-controls {
    max-width: 1400px;
    margin: -50px auto 60px;
    position: relative;
    z-index: 20;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.controls-description {
    max-width: 450px;
}

.controls-description p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.session-picker {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.session-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

.session-dropdown {
    padding: 12px 40px 12px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid #eee;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231a1a1a' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
}

.session-dropdown:hover {
    border-color: var(--primary);
}

/* ─────────────────────────────────
   MUSEUM GRID
───────────────────────────────── */
.museum-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

.museum-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.museum-card-frame {
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.museum-card-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.museum-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 18, 25, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.museum-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 18, 25, 0.12);
}

.museum-card:hover .museum-card-frame img {
    transform: scale(1.1);
}

.museum-card:hover .museum-card-overlay {
    opacity: 1;
}

.view-badge {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.museum-card:hover .view-badge {
    transform: translateY(0);
}

.museum-card-details {
    padding: 30px;
}

.museum-card-date {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.museum-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
}

/* ─────────────────────────────────
   RESPONSIVE
───────────────────────────────── */
@media (max-width: 992px) {
    .museum-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        padding: 0 20px;
        gap: 30px;
    }

    .gallery-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 0 20px;
    }

    .session-picker {
        align-items: flex-start;
        width: 100%;
    }

    .session-dropdown {
        width: 100%;
    }

    .museum-card-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .museum-grid {
        grid-template-columns: 1fr;
    }

    .albums-title {
        font-size: 3rem;
    }

    .archives-hero {
        height: 50vh;
    }
}
