/* ── Page Header ── */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 50px 0 40px;
}
.page-header h1 { font-size: 2.2rem; font-weight: 700; color: white; }
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none; font-size: 14px;
}
.page-header .breadcrumb-item.active { color: white; }

/* ── Section ── */
.section-pad { padding: 80px 0; }

/* ── Filter Tabs ── */
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border-color);
    background: white;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ── Album Cards ── */
.album-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.album-cover {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.album-cover.green   { background: linear-gradient(135deg, #1B4332, #2D6A4F); }
.album-cover.orange  { background: linear-gradient(135deg, #9A4800, #C45E00); }
.album-cover.blue    { background: linear-gradient(135deg, #0C447C, #185FA5); }
.album-cover.red     { background: linear-gradient(135deg, #791F1F, #A32D2D); }
.album-cover.purple  { background: linear-gradient(135deg, #3C3489, #534AB7); }
.album-cover.teal    { background: linear-gradient(135deg, #085041, #0F6E56); }

.album-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.album-card:hover .album-overlay { color: rgba(255,255,255,0.9); }
.album-overlay i { font-size: 40px; }
.album-overlay span { font-size: 13px; }

.album-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}
.album-body { padding: 16px; }
.album-body h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.album-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .section-pad { padding: 50px 0; }
}