/* Shows Archives Page Styles */

.hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #8a2be2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.search-filter-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* Show Cards */
.show-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
}

.show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.show-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.show-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,105,180,0.8), rgba(138,43,226,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.show-card:hover .show-card-image::before {
    opacity: 1;
}

.show-card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.show-card:hover .show-card-overlay {
    opacity: 1;
}

.show-card-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.show-card-body {
    padding: 1.5rem;
}

.show-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.show-card-role {
    font-size: 1.1rem;
    color: #ff69b4;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.show-card-theater {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.show-card-dates {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

.show-card-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.show-card-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.show-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.show-badge.public {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.show-badge.private {
    background: linear-gradient(45deg, #6c757d, #495057);
    color: white;
}

.show-badge.video {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
}

.show-badge.program {
    background: linear-gradient(45deg, #17a2b8, #6f42c1);
    color: white;
}

.show-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-show-action {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-view {
    background: linear-gradient(45deg, #ff69b4, #8a2be2);
    color: white;
}

.btn-view:hover {
    background: linear-gradient(45deg, #e55aa0, #7a1fd1);
    color: white;
    transform: translateY(-2px);
}

.btn-video {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
}

.btn-video:hover {
    background: linear-gradient(45deg, #c82333, #e55a00);
    color: white;
    transform: translateY(-2px);
}

.btn-program {
    background: linear-gradient(45deg, #17a2b8, #6f42c1);
    color: white;
}

.btn-program:hover {
    background: linear-gradient(45deg, #138496, #5a32a3);
    color: white;
    transform: translateY(-2px);
}

/* Show Modal */
.modal-xl {
    max-width: 90%;
}

.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, #ff69b4 0%, #8a2be2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.show-detail-content {
    padding: 2rem;
}

.show-detail-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.show-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 0.5rem;
}

.show-detail-role {
    font-size: 1.3rem;
    color: #ff69b4;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.show-detail-theater {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.show-detail-dates {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
}

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

.media-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.media-section h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.program-preview {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 2px dashed #dee2e6;
}

.program-preview i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.show-detail-description {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.show-detail-description h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.show-detail-description p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Career Timeline */
.career-timeline {
    position: relative;
    padding: 2rem 0;
}

.career-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
}

.timeline-content {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
    transform: translateY(-50%);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(255,105,180,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-filter-container {
        margin-top: -30px;
        padding: 1.5rem;
    }
    
    .career-timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .show-detail-media {
        grid-template-columns: 1fr;
    }
}

/* Loading States */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff69b4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #333;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #666;
    font-size: 1.1rem;
} 