/* Performances Page Styles */

.page-header {
    height: 100vh;
    min-height: 600px;
}

.header-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 2rem;
    margin: 1rem 0;
}

.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;
}

.performances-section {
    padding: 4rem 0;
}

.performances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.performance-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.performance-card:hover {
    transform: translateY(-5px);
}

.performance-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.performance-info {
    padding: 1.5rem;
}

.performance-info h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--heading-color);
}

.performance-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.performance-info p {
    margin: 1rem 0 0;
    line-height: 1.6;
}

/* Memorable Moments Section */
.memorable-moments {
    background: var(--section-bg);
    padding: 4rem 0;
}

.performance-quote {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-style: italic;
    color: var(--text-color);
}

.performance-quote p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.performance-quote cite {
    font-size: 1rem;
    color: var(--accent-color);
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.moment-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.moment-card h3 {
    color: var(--heading-color);
    margin: 0 0 1rem;
    font-family: 'Cormorant Garamond', serif;
}

/* Performance Style Section */
.performance-style {
    padding: 4rem 0;
}

.style-content {
    max-width: 800px;
    margin: 0 auto;
}

.style-content > p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.style-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight {
    text-align: center;
    padding: 1.5rem;
}

.highlight h3 {
    color: var(--heading-color);
    margin: 0 0 1rem;
    font-family: 'Cormorant Garamond', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .performances-grid {
        grid-template-columns: 1fr;
    }

    .performance-quote p {
        font-size: 1.2rem;
    }

    .style-highlights {
        grid-template-columns: 1fr;
    }
}
