/* Enhanced Repertoire Section Styles */
.repertoire-section {
    padding: 7rem 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, rgba(248, 249, 250, 0.9) 100%);
}

.repertoire-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.repertoire-header h2 {
    margin-bottom: 1.5rem;
}

.repertoire-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--sage);
    margin-bottom: 3rem;
}

.repertoire-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.repertoire-category {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.repertoire-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    opacity: 0.8;
    transition: height 0.3s ease;
}

.repertoire-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.repertoire-category:hover::before {
    height: 8px;
}

.repertoire-category h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 0.8rem;
}

.repertoire-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.repertoire-category:hover h3::after {
    width: 60px;
}

.repertoire-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.repertoire-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.5;
}

.repertoire-list li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--primary);
    opacity: 0.7;
}

.repertoire-list li:last-child {
    margin-bottom: 0;
}

/* Custom Requests Section */
.custom-requests {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 900px;
    margin: 2rem auto 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.custom-requests::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    border-radius: 0 0 50% 50%;
}

.custom-requests h3 {
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    color: var(--primary);
}

.custom-requests p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.custom-requests .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Responsive adjustments for repertoire section */
@media (max-width: 992px) {
    .repertoire-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .custom-requests {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .repertoire-header {
        margin-bottom: 3rem;
    }
    
    .repertoire-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .repertoire-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .repertoire-category {
        padding: 2rem;
    }
    
    .custom-requests {
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }
    
    .custom-requests h3 {
        font-size: 1.6rem;
    }
    
    .custom-requests p {
        font-size: 1rem;
    }
    
    .repertoire-section {
        padding: 5rem 0;
    }
} 