/* Performances CSS */

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--lily);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--burlywood);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--burlywood);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--burlywood);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.page-header .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 0;
    color: var(--lily);
}

/* Performances Grid */
.performances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.performance-card {
    border: 1px solid rgba(222, 184, 135, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.performance-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.performance-image {
    height: 200px;
    overflow: hidden;
}

.performance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.performance-card:hover .performance-image img {
    transform: scale(1.05);
}

.performance-info {
    padding: 20px;
}

.performance-info h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--burlywood);
}

.performance-date {
    font-size: 0.8rem;
    color: var(--lily);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.performance-excerpt {
    font-size: 0.9rem;
    color: var(--white);
    margin: 0;
}

/* Coming Soon Message */
.coming-soon-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    border: 1px solid rgba(222, 184, 135, 0.3);
    background-color: rgba(69, 92, 123, 0.1);
}

.coming-soon-message h2 {
    color: var(--burlywood);
    margin-bottom: 15px;
}

.coming-soon-message p {
    color: var(--lily);
    margin-bottom: 10px;
}

.coming-soon-message a {
    color: var(--burlywood);
    text-decoration: none;
    border-bottom: 1px solid var(--burlywood);
    transition: opacity 0.3s ease;
}

.coming-soon-message a:hover {
    opacity: 0.8;
}

/* Single Performance Page */
.performance-single {
    margin-bottom: 60px;
}

.performance-header {
    text-align: center;
    margin-bottom: 30px;
}

.performance-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.performance-header .performance-date {
    font-size: 1rem;
    color: var(--lily);
}

.performance-featured-image {
    margin-bottom: 30px;
    border: 1px solid rgba(222, 184, 135, 0.3);
    overflow: hidden;
}

.performance-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.performance-video {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(222, 184, 135, 0.3);
}

.performance-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.performance-content {
    margin-bottom: 40px;
    line-height: 1.8;
}

.performance-content p {
    margin-bottom: 20px;
}

/* Share Buttons */
.performance-share {
    margin-bottom: 40px;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(222, 184, 135, 0.3);
    border-bottom: 1px solid rgba(222, 184, 135, 0.3);
}

.performance-share h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--burlywood);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    background-color: rgba(69, 92, 123, 0.3);
}

.share-button:hover {
    transform: translateY(-3px);
}

.share-button.facebook:hover {
    background-color: #3b5998;
}

.share-button.twitter:hover {
    background-color: #1da1f2;
}

.share-button.email:hover {
    background-color: var(--burlywood);
}

/* Performance Navigation */
.performance-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.performance-navigation a {
    color: var(--lily);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.performance-navigation a:hover {
    color: var(--burlywood);
}

.all-performances {
    padding: 8px 15px;
    border: 1px solid rgba(222, 184, 135, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .performances-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-header h1 {
        font-size: 2rem;
    }
    
    .performance-navigation {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
} 