
/* ========================================
   SHARED STYLES FOR WARREN BENSON SITE
   ======================================== */

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Layout Container */
.site-container {
    display: flex;
    min-height: 100vh;
}

/* ========================================
   SIDEBAR STYLES
   ======================================== */

.sidebar {
    width: 350px;
    background-color: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    box-shadow: 2px 0 8px rgba(0,0,0,0.05);
}

.sidebar-header {
    text-align: center;
    padding: 25px 20px;
}

.sidebar-header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #303030!important;
    font-size: 30px;
    font-weight: 400;
    padding: 12px 24px 12px 24px;
}

.sidebar-header .icon {
    margin-right: 8px;
}

/* Navigation */
.sidebar-nav {
    padding-left: 3rem;
    margin-bottom: 1rem;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    position: relative;
}

.sidebar-nav a {
    display: block;
    padding-bottom: 8px;
    color: #696969!important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: font-weight 0.2s ease;
    position: relative;
}

/* Wrap text in a span for precise underline positioning */
.sidebar-nav a span {
    position: relative;
    display: inline-block;
}

/* Animated underline pseudo-element - only under text */
.sidebar-nav a span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover state: unbold + line animates from left to right */
.sidebar-nav a:hover {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

.sidebar-nav a:hover span::after {
    transform: scaleX(1);
}

/* Current page: unbold with full line (no animation needed) */
.sidebar-nav a[aria-current="page"] {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

.sidebar-nav a[aria-current="page"] span::after {
    transform: scaleX(1);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.sidebar-footer .dates {
    font-size: 13px;
    font-weight: 600;
    color: #5a5a5a;
    margin-bottom: 18px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.sidebar-footer img {
    max-width: 100%;
    height: auto;
    margin-bottom: 18px;
    padding: 0 10px;
}

.sidebar-footer .credits {
    font-size: 10px;
    line-height: 1.3;
    color: #666;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
    margin-left: 350px;
    flex: 1;
    padding: 40px 60px;
    max-width: 100%;
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */

.home-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 100px;
}

.quote-section {
    flex: 0 0 35%;
}

.quote-text {
    font-size: 16px;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-attribution {
    font-size: 14px;
    line-height: 1.6;
}

.image-section {
    flex: 1;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
}

.x-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.x-button:hover {
    color: #333;
}

.popup-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.sub-headline {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.jury-note {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.key-details {
    margin-bottom: 25px;
}

.key-details p {
    font-size: 16px;
    margin: 5px 0;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #555;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 50px;
}

.left-section {
    flex: 0 0 35%;
}

.right-section {
    flex: 1;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.publishers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.publishers-list li {
    margin-bottom: 12px;
}

.publishers-list a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}

.publishers-list a:hover {
    color: #666;
}

.note {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    margin-bottom: 40px;
}

.contact-photo {
    width: 100%;
    max-width: 600px;
    margin-bottom: 15px;
}

.contact-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-credit {
    font-size: 11px;
    color: #666;
    margin-bottom: 25px;
}

.contact-intro {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.mailing-address {
    margin-bottom: 30px;
}

.mailing-address h3 {
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
    text-decoration: underline;
}

.mailing-address p {
    font-size: 14px;
    line-height: 1.6;
    margin: 2px 0;
}

/* Contact Form */
.contact-form-section h3 {
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
    text-decoration: underline;
}

.contact-form {
    max-width: 800px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #5a5a5a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #696969;
    background-color: transparent;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid #7d7d7d;
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: #5a5a5a;
    color: #fff;
}

.button-container {
    display: flex;
    justify-content: end;
}

/* ========================================
   BIOGRAPHY PAGE STYLES
   ======================================== */

.biography-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 50px;
}

.bio-image-section {
    flex: 0 0 40%;
}

.bio-image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.bio-text-section {
    flex: 1;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    justify-content: space-around;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 24px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    width: 100%;
    border-bottom: 1px solid #ededed;
}

.tab-button:hover {
    color: #000;
    
}

.tab-button.active {
    color: #000;
    font-weight: 600;
        border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
    border-bottom-color: rgb(0, 0, 0) !important;
}

.tab-button.active::after {
    /* content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #000; */
    
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 20px;
    text-align: justify;
}

.tab-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.tab-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.tab-content li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.tab-content li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.bio-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f0f0f0;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.bio-link:hover {
    background-color: #e0e0e0;
}

/* ========================================
   LEARN PAGE STYLES
   ======================================== */

.learn-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 50px;
}

.learn-image-section {
    flex: 0 0 40%;
}

.learn-image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.learn-text-section {
    flex: 1;
}

.learn-section {
    margin-bottom: 40px;
}

.learn-section:last-child {
    margin-bottom: 0;
}

.learn-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.learn-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.learn-section a {
    color: #000;
    text-decoration: underline;
    transition: color 0.2s;
}

.learn-section a:hover {
    color: #666;
}

.archive-info {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-left: 3px solid #333;
}

.archive-info p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.6;
}

.archive-info strong {
    font-weight: 600;
}

/* ========================================
   OF NOTE PAGE STYLES
   ======================================== */

.ofnote-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 50px;
}

.ofnote-text-section {
    flex: 0 0 45%;
}

.ofnote-image-section {
    flex: 1;
}

.ofnote-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.ofnote-quote {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.ofnote-quote p {
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 15px;
}

.ofnote-resources {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.resource-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.resource-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.resource-type {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-title {
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.6;
}

.resource-subtitle {
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.6;
}

.resource-author {
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.6;
}

.resource-details {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.download-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    transition: color 0.2s;
}

.download-link:hover {
    color: #666;
}

/* ========================================
   SELECTED BOOKS PAGE STYLES
   ======================================== */

.books-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 50px;
}

.books-covers-section {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.book-cover {
    width: 100%;
    display: flex;
    justify-content: center;
}

.book-cover img {
    width: 60%;
    height: auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.books-text-section {
    flex: 1;
}

.book-section {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.book-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.book-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.download-link-wrapper {
    margin-bottom: 20px;
}

.book-download-link {
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    transition: color 0.2s;
}

.book-download-link:hover {
    color: #666;
}

.book-quote {
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.book-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.book-attribution {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.book-credit {
    margin-top: 20px;
}

.book-availability {
    margin-top: 10px;
}

.book-rights {
    margin-top: 10px;
}

.book-details {
    margin-top: 20px;
}

.book-details p {
    margin-bottom: 5px;
}

/* ========================================
   RECORDINGS PAGE STYLES
   ======================================== */

.recordings-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 50px;
}

.recordings-covers-section {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.album-cover {
    width: 100%;
        display: flex;
    justify-content: center;
}

.album-cover img {
    width: 60%;
    height: auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.recordings-list-section {
    flex: 1;
}

.recording-featured {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #333;
}

.recording-featured p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.recordings-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.recording-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.recording-item:last-child {
    border-bottom: none;
}

.recording-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.recording-item p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   VIDEO PAGE STYLES
   ======================================== */

.video-content {
    margin: 50px;
}

.video-section {
    margin-bottom: 60px;
}

.video-section:last-child {
    margin-bottom: 0;
}

.video-titles {
    margin-bottom: 30px;
}

.video-titles p {
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.video-item {
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   CHAMBER PAGE STYLES
   ======================================== */

.chamber-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 50px;
}

.chamber-quotes-section {
    flex: 0 0 35%;
}

.quote-block {
    margin-bottom: 40px;
}

.quote-block:last-child {
    margin-bottom: 0;
}

.quote-block p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.quote-attribution {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
}

.chamber-main-section {
    flex: 1;
}

.chamber-photo {
    margin-bottom: 30px;
}

.chamber-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.chamber-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.chamber-works-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chamber-work {
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.chamber-work:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.chamber-work h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.chamber-work p {
    font-size: 14px;
    line-height: 1.6;
    margin: 3px 0;
}

.audio-embed {
    margin-top: 15px;
    margin-bottom: 10px;
    padding-top: 5px !important;
    padding-left: 5px !important;
    margin-right: 0px !important;
    padding-right: 5px !important;
    border-style: solid !important;
    border-width: 1px !important;
    border-color: rgba(125, 125, 125, 1) !important;
}

.audio-embed:last-child {
    margin-bottom: 0;
}

/* ========================================
   COMPOSITION LIST PAGE STYLES (Choral, Instrumental Solos, etc.)
   ======================================== */

.composition-list-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 50px;
}

.composition-quote-section {
    flex: 0 0 35%;
}

.composition-main-section {
    flex: 1;
}

.composition-photo {
    margin-bottom: 30px;
}

.composition-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.composition-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.composition-works-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.composition-work {
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.composition-work:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.composition-work h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.composition-work p {
    font-size: 14px;
    line-height: 1.6;
    margin: 3px 0;
}

/* ========================================
   MOBILE HAMBURGER MENU
   ======================================== */

.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10001;
    cursor: pointer;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger__slice {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .sidebar {
        width: 200px;
    }
    
    .main-content {
        padding: 30px 40px;
        margin-left: 200px;
    }
    
    .sidebar-nav {
        padding-left: 1rem;
        margin-bottom: 1rem;
    }
    
    .sidebar-nav a {
        padding-bottom: 4px;
        font-size: 11px;
    }
    
    /* Home page responsive */
    .home-content {
        gap: 30px;
        margin: 50px;
    }
    
    .quote-text {
        font-size: 11px;
        line-height: 1.4;
        font-style: italic;
        margin-bottom: 20px;
    }
    
    .quote-attribution {
        font-size: 9px;
        line-height: 1.6;
    }
    
    /* Contact page responsive */
    .contact-content {
        gap: 40px;
        margin: 30px;
    }
    
    /* Biography page responsive */
    .biography-content {
        gap: 40px;
        margin: 30px;
    }
    
    /* Learn page responsive */
    .learn-content {
        gap: 40px;
        margin: 30px;
    }
    
    /* Of Note page responsive */
    .ofnote-content {
        gap: 40px;
        margin: 30px;
    }
    
    /* Selected Books page responsive */
    .books-content {
        gap: 40px;
        margin: 30px;
    }
    
    /* Recordings page responsive */
    .recordings-content {
        gap: 40px;
        margin: 30px;
    }
    
    /* Video page responsive */
    .video-content {
        margin: 30px;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Chamber page responsive */
    .chamber-content {
        gap: 40px;
        margin: 30px;
    }
    
    /* Composition list pages responsive */
    .composition-list-content {
        gap: 40px;
        margin: 30px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 350px;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
        padding: 80px 20px 40px;
    }
    
    /* Home page responsive */
    .home-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .quote-section {
        flex: 1 1 100%;
    }
    
    .popup-content {
        padding: 30px 20px;
    }
    
    /* Contact page responsive */
    .contact-content {
        flex-direction: column;
        gap: 40px;
        margin: 20px 0;
    }
    
    .left-section {
        flex: 1 1 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    /* Biography page responsive */
    .biography-content {
        flex-direction: column;
        gap: 30px;
        margin: 20px 0;
    }
    
    .bio-image-section {
        flex: 1 1 100%;
    }
    
    .tab-navigation {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tab-button {
        border-bottom: 1px solid #ddd;
        text-align: left;
    }
    
    .tab-button.active::after {
        bottom: 0;
        height: 100%;
        width: 3px;
        left: 0;
        right: auto;
    }
    
    /* Learn page responsive */
    .learn-content {
        flex-direction: column;
        gap: 30px;
        margin: 20px 0;
    }
    
    .learn-image-section {
        flex: 1 1 100%;
    }
    
    /* Of Note page responsive */
    .ofnote-content {
        flex-direction: column-reverse;
        gap: 30px;
        margin: 20px 0;
    }
    
    .ofnote-text-section {
        flex: 1 1 100%;
    }
    
    .ofnote-image-section {
        flex: 1 1 100%;
    }
    
    /* Selected Books page responsive */
    .books-content {
        flex-direction: column;
        gap: 30px;
        margin: 20px 0;
    }
    
    .books-covers-section {
        flex: 1 1 100%;
        flex-direction: row;
        gap: 20px;
    }
    
    .books-text-section {
        flex: 1 1 100%;
    }
    
    /* Recordings page responsive */
    .recordings-content {
        flex-direction: column;
        gap: 30px;
        margin: 20px 0;
    }
    
    .recordings-covers-section {
        flex: 1 1 100%;
        flex-direction: row;
        gap: 15px;
        overflow-x: auto;
    }
    
    .album-cover {
        min-width: 150px;
    }
    
    .recordings-list-section {
        flex: 1 1 100%;
    }
    
    /* Video page responsive */
    .video-content {
        margin: 20px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Chamber page responsive */
    .chamber-content {
        flex-direction: column;
        gap: 30px;
        margin: 20px 0;
    }
    
    .chamber-quotes-section {
        flex: 1 1 100%;
    }
    
    .chamber-main-section {
        flex: 1 1 100%;
    }
    
    /* Composition list pages responsive */
    .composition-list-content {
        flex-direction: column;
        gap: 30px;
        margin: 20px 0;
    }
    
    .composition-quote-section {
        flex: 1 1 100%;
    }
    
    .composition-main-section {
        flex: 1 1 100%;
    }
}