/* Discography Header with Toggle */
.discography-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.view-toggle {
    background: rgba(0, 0, 0, 0);
    border: 0px solid rgba(0, 0, 0, 0.2);
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-family: "BBH Bogle", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.view-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* View Sections */
.view-section {
    display: none;
}

.view-section.active {
    display: block;
}

/* Section Titles (Albums/Singles) */
.section-title {
    font-size: 2rem;
    margin: 60px 0 30px 0;
    letter-spacing: 2px;
}

.section-title:first-of-type {
    margin-top: 0;
}

/* Releases Grid */
.releases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.release-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.release-item:hover {
    transform: translateY(-10px);
}

.release-cover {
    width: 100%;
    aspect-ratio: 1;
    background: #222;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.release-item h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
    color: #444
}

.release-item p {
    color: #888;
}

/* Mobile Responsive - Discography Specific */
@media (max-width: 768px) {
    .discography-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .releases {
        grid-template-columns: 1fr;
    }
}