/* Music Page Styles */

.page-header {
    height: auto;
    min-height: 100vh;
    padding: calc(60px + 4rem) 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.header-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin: 1rem 0;
    line-height: 1.3;
}

.header-quote {
    margin: 2rem auto;
    max-width: 800px;
}

.header-quote p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.header-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #d4af37;
}

.music-content section {
    padding: 6rem 0;
}

.music-content .albums-section {
    background-color: var(--background-color);
}

.albums-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.album-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.album-cover {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.album-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-info {
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.98));
    text-align: center;
}

.album-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.year {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-align: center;
}

.description {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.learn-more-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--background-color);
}

/* Critical Reception Section */
.critical-reception {
    background-color: rgba(255, 255, 255, 0.02);
}

.album-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.4);
}

.review-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.review-quote {
    position: relative;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.review-quote::before {
    content: '"';
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.review-quote p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.review-quote cite {
    color: var(--accent-color);
    font-size: 0.9rem;
    opacity: 0.9;
}

.review-detail {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Press Section */
.press-section {
    padding: 4rem 0;
}

/* Live Performances Section */
.live-performances {
    padding: 4rem 0;
    background: var(--section-bg);
}

.performance-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.performance-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.performance-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.performance-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.performance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.performance-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .music-content section {
        padding: 4rem 0;
    }

    .albums-grid,
    .album-reviews {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .album-card,
    .review-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .album-info {
        padding: 1.5rem;
    }

    .album-info h3 {
        font-size: 1.5rem;
    }

    .performance-preview {
        grid-template-columns: 1fr;
    }

    .performance-text {
        order: 2;
    }

    .performance-image {
        order: 1;
    }

    .page-header {
        padding: calc(50px + 3rem) 1.5rem 3rem;
    }

    .header-quote {
        margin: 1.5rem auto;
    }

    .header-quote p {
        font-size: 1.1rem;
    }

    .header-quote cite {
        font-size: 1rem;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    .page-header {
        min-height: auto;
        padding: calc(40px + 1.5rem) 1rem 1.5rem;
    }

    .header-content {
        padding: 0;
    }

    .header-quote {
        margin: 1rem auto;
    }

    .header-quote p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .header-quote cite {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
}

.evolution-section {
    padding: 4rem 0;
    background: #f8f8f8;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-block {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-block:hover {
    transform: translateY(-5px);
}

.timeline-block h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.timeline-block .year {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.milestone {
    margin: 1.5rem 0;
}

.milestone h4 {
    color: #666;
    margin-bottom: 0.5rem;
}

.milestone ul {
    list-style: none;
    padding-left: 0;
}

.milestone ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.timeline-block p {
    color: #666;
    line-height: 1.6;
}

.watch-btn {
    display: inline-block;
    background: #4a90e2;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.watch-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #4a90e2;
}

@media (max-width: 768px) {
    .timeline-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .timeline-block {
        margin: 0 1rem;
    }
}
