/* ==========================================================================
   Section Components
   ========================================================================== */

/* Base Section */
.section {
    padding: var(--space-20) 0;
}

.section--sm {
    padding: var(--space-12) 0;
}

.section--lg {
    padding: var(--space-24) 0;
}

/* Section Backgrounds */
.section--light {
    background-color: var(--color-mist-white);
}

.section--dark {
    background-color: var(--color-deep-ocean);
    color: var(--color-mist-white);
}

.section--warm {
    background-color: #f8f5f0;
}

/* Section Header */
.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section__subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-aged-gold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    margin-bottom: var(--space-3);
}

.section__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-semibold);
    color: var(--color-deep-ocean);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
}

.section--dark .section__title {
    color: var(--color-mist-white);
}

.section__description {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    color: var(--color-warm-clay);
    line-height: var(--leading-relaxed);
}

.section--dark .section__description {
    color: rgba(var(--color-mist-white-rgb), 0.8);
}

/* Decorative Line */
.section__line {
    width: 60px;
    height: 2px;
    background-color: var(--color-aged-gold);
    margin: 0 auto var(--space-6);
}

/* About/Bio Section */
.about-section {
    position: relative;
}

.about-section__content {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    line-height: var(--leading-loose);
    color: var(--color-deep-ocean);
}

.about-section__content p {
    margin-bottom: var(--space-6);
}

.about-section__highlight {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-style: italic;
    color: var(--color-warm-clay);
    border-left: 3px solid var(--color-aged-gold);
    padding-left: var(--space-6);
    margin: var(--space-8) 0;
}

/* Music Section */
.music-section {
    background: linear-gradient(
        135deg,
        var(--color-deep-ocean) 0%,
        #243444 100%
    );
}

.music-section__album {
    display: flex;
    align-items: center;
    gap: var(--space-10);
    flex-wrap: wrap;
}

.music-section__artwork {
    flex: 0 0 300px;
    max-width: 100%;
}

.music-section__artwork img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.music-section__info {
    flex: 1;
    min-width: 280px;
}

.music-section__title {
    font-family: var(--font-script);
    font-size: var(--text-3xl);
    color: var(--color-mist-white);
    margin-bottom: var(--space-2);
}

.music-section__type {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--color-aged-gold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-4);
}

.music-section__description {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: rgba(var(--color-mist-white-rgb), 0.8);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

/* Spotify Embed Container */
.spotify-embed {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Quotes/Testimonials Section */
.quotes-section {
    background-color: var(--color-deep-ocean);
    position: relative;
    overflow: hidden;
}

.quotes-section::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 400px;
    color: var(--color-aged-gold);
    opacity: 0.05;
    line-height: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(
        135deg,
        var(--color-warm-clay) 0%,
        #7a5f4d 100%
    );
    text-align: center;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-mist-white);
    margin-bottom: var(--space-4);
}

.cta-section__text {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    color: rgba(var(--color-mist-white-rgb), 0.9);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Productions Grid */
.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

@media (min-width: 992px) {
    .productions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: var(--space-16) 0;
    }

    .music-section__album {
        flex-direction: column;
        text-align: center;
    }

    .music-section__artwork {
        flex: 0 0 auto;
        max-width: 250px;
    }
}
