/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #FFD700;
    color: #000000;
    border-color: #FFD700;
}

.btn-primary:hover {
    background-color: #000000;
    color: #FFD700;
    border-color: #000000;
}

.btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Transparent navbar only at top of page */
.navbar.navbar-top {
    background-color: transparent;
    backdrop-filter: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    text-decoration: none;
}

.logo h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: -5px;
    position: relative;
    display: inline-block;
    transition: transform 0.25s ease, text-shadow 0.25s ease;
}

/* No underline effect for logo text */
.logo h2::after {
    display: none;
}

.logo span {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FFD700;
}

.nav-link::after {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* New Slide-in Side Panel - Separate Interface */
.side-panel {
    position: fixed;
    top: 0;
    left: 0; /* Keep left 0 for easier positioning reference */
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(15, 15, 15, 0.99) 100%);
    backdrop-filter: blur(30px);
    z-index: 10000;
    /* Faster, hardware-accelerated transition using translateX */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    transform: translateX(100%); /* Start off-screen to the right */
    isolation: isolate;
    opacity: 0;
    pointer-events: none;
}

/* Side Panel Background Video */
.side-panel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7) contrast(1.1);
    box-shadow: inset 0 0 100px 20px rgba(0, 0, 0, 0.2);
}

.side-panel.active {
    /* Translate to 0 to slide into view from the right */
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.side-panel-content {
    padding: 80px 30px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin-left: auto;
    margin-right: 8%;
    max-width: 380px;
    width: 100%;
}

.side-panel-logo {
    text-align: right;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.side-panel-logo h3 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.side-panel-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 300;
}

.side-panel-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    width: 100%;
}

.side-panel-nav .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    padding: 8px 0;
    width: 100%;
    text-align: right;
    transition: all 0.3s ease;
}

.side-panel-nav .nav-link:hover {
    color: #FFD700;
}

.side-panel-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
}

.side-panel-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.side-panel-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.side-panel-social a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.side-panel-social a:hover {
    color: #FFD700;
    border-color: #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
}

/* Overlay for closing panel - Strong separation */
.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Close button for panel - aligned with hamburger button position */
.panel-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.panel-close:hover {
    background: #FFD700;
    color: #000000;
    transform: rotate(90deg) scale(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Fullscreen background video behind hero content */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.35);
}

/* Ensure hero content + image sit above video */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 215, 0, 0.14) 0, transparent 55%),
        radial-gradient(circle at 85% 30%, rgba(255, 215, 0, 0.09) 0, transparent 55%),
        radial-gradient(circle at 20% 85%, rgba(255, 255, 255, 0.05) 0, transparent 60%);
    pointer-events: none;
    opacity: 0.95;
    animation: theatreStory 18s ease-in-out infinite;
}

/* Storytelling / theatre themed motion: subtle curtain + spotlight sweep */
@keyframes theatreStory {
    0% {
        background-position:
            15% 20%,
            85% 30%,
            20% 85%;
        opacity: 0.9;
    }
    25% {
        background-position:
            20% 25%,
            80% 35%,
            25% 80%;
        opacity: 1;
    }
    50% {
        background-position:
            25% 18%,
            75% 40%,
            30% 75%;
        opacity: 0.92;
    }
    75% {
        background-position:
            18% 22%,
            82% 28%,
            22% 78%;
        opacity: 0.98;
    }
    100% {
        background-position:
            15% 20%,
            85% 30%,
            20% 85%;
        opacity: 0.9;
    }
}


.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    animation: slideInUp 1s ease-out 0.2s both;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure hero image stands out over dark video background */
.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    animation: slideInUp 1s ease-out 0.6s both;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.45)) brightness(1.1);
    mix-blend-mode: screen;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.about-text p {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.about-stats {
    /* Single shared container matching the image - reduced gap between stats */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 40px;
    display: flex;
    justify-content: space-around;
    gap: 0.1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: -360px;
    position: relative; /* Needed for ::before positioning */
    overflow: hidden; /* To contain the pseudo-element border radius */
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4.8px; /* 40% thinner yellow strip */
    background-color: #FFD700;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.stat {
    text-align: center;
    /* No individual containers - just pure text styling - no hover effects */
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.stat:hover {
    transform: none !important;
}

.stat h4 {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.stat p {
    color: #333;
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat:last-child {
    margin-bottom: 0;
}

.stat h4 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Productions Section */
.productions {
    padding: 100px 0;
    background-color: #ffffff;
}

.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.production-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.production-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 600;
    font-size: 1.2rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.show-dates {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item .placeholder-image {
    height: 100%;
    width: 100%;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Section */
.team {
    padding: 100px 0;
    background-color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background-color: #f8f8f8;
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFD700;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-photo .placeholder-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.member-info h3 {
    color: #000000;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.role {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    /* Add text truncation as fallback */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid #FFD700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #FFD700;
    color: #000000;
}

/* Contact Form */
.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-social h4 {
    color: #FFD700;
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-links a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.footer-social-links a:hover {
    color: #FFD700;
}

.footer-logo h3 {
    color: #FFD700;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #cccccc;
    font-weight: 300;
}

.footer-links h4 {
    color: #FFD700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-newsletter h4 {
    color: #FFD700;
    margin-bottom: 15px;
}

.footer-newsletter p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #444;
    background-color: #222;
    color: #ffffff;
    border-radius: 5px;
}

.newsletter-form input::placeholder {
    color: #888;
}

/* Newsletter form button specific styling */
.newsletter-form .btn-small {
    background-color: #444 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px !important;
}

.newsletter-form .btn-small:hover {
    background-color: #FFD700 !important;
    color: #000000 !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Enhanced Mobile-First Responsive Design */

/* Small tablets and large phones */
@media (max-width: 768px) {
    /* Typography improvements */
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Hero section mobile optimization */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 0 20px;
        min-height: 90vh;
        align-content: center;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        order: 2; /* Place text content below image on mobile */
    }
    
    /* Move hero image above text on mobile */
    .hero-img {
        max-width: 280px;
        width: 75%;
        order: 1; /* Place image above text on mobile */
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .hero-img {
        max-width: 300px;
        width: 80%;
    }
    
    /* Section padding adjustments */
    .about,
    .productions,
    .gallery,
    .team,
    .contact {
        padding: 60px 0;
    }
    
    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text h3 {
        font-size: 1.2rem;
    }
    
    .about-text p {
        margin-bottom: 20px;
        font-size: 0.95rem;
    }
    
    .about-stats {
        padding: 25px 20px;
        /* Revert to single column stack on mobile */
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat h4 {
        font-size: 2rem;
    }
    
    /* Contact section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    /* Social links */
    .social-links {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .social-link {
        padding: 10px 15px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
    
    /* Footer improvements */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .newsletter-form input {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    /* Further mobile optimizations */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .hero-img {
        max-width: 250px;
        width: 70%;
    }
    
    .hero-buttons .btn {
        max-width: 250px;
        padding: 12px 20px;
    }
    
    /* Typography adjustments */
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Section spacing */
    .about,
    .productions,
    .gallery,
    .team,
    .contact {
        padding: 50px 0;
    }
    
    /* Navigation improvements for mobile */
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
    
    /* Side panel optimizations */
    .side-panel-content {
        padding: 60px 20px 20px 20px;
        margin-right: 5%;
        max-width: 300px;
    }
    
    .side-panel-logo h3 {
        font-size: 2rem;
    }
    
    .side-panel-nav .nav-link {
        font-size: 1.4rem;
        font-family: 'Playfair Display', serif;
        padding: 12px 0;
    }
    
    /* Gallery improvements */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Contact form */
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    /* Button improvements */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-social-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .productions-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .production-card:hover,
    .team-member:hover,
    .gallery-item:hover {
        transform: none;
    }
    
    .production-card:active,
    .team-member:active,
    .gallery-item:active {
        transform: scale(0.98);
    }
    
    .btn:hover {
        background-color: inherit;
        color: inherit;
    }
    
    .btn:active {
        transform: scale(0.95);
    }
}

/* Landscape orientation optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-container {
        padding: 20px 40px;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-img {
        max-width: 200px;
    }
}

/* Animations and Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling offset for fixed navbar */
section {
    scroll-margin-top: 70px;
}

/* Large Screen Optimizations for Side Panel */
@media (min-width: 1440px) {
    .side-panel-content {
        margin-right: 5%;
        max-width: 350px;
    }
}

@media (min-width: 1920px) {
    .side-panel-content {
        margin-right: 3%;
        max-width: 320px;
    }
}
/* Admin Panel Styles */
.admin-header {
    background: #000000;
    color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.admin-logo {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

.admin-nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.admin-nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.admin-nav-links a:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-1px);
}

.admin-nav-links a.active {
    background: #FFD700;
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.admin-logout {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.admin-logout:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Admin Dashboard Styles */
.admin-dashboard,
.admin-home {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-bottom: 40px;
}

.admin-dashboard .dashboard-content,
.admin-home .home-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.admin-dashboard .dashboard-header,
.admin-home .home-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.admin-dashboard .dashboard-header h1,
.admin-home .home-header h1 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.admin-dashboard .dashboard-header p,
.admin-home .home-header p {
    color: #666;
    font-size: 1.2rem;
    font-weight: 300;
}

.stats-overview {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    border-left: 5px solid #FFD700;
}

.stats-overview h2 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.stat-item {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
    display: block;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Admin Cards */
.admin-actions .action-card,
.home-sections .section-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.admin-actions .action-card::before,
.home-sections .section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.admin-actions .action-card:hover,
.home-sections .section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.admin-actions .action-card h3,
.home-sections .section-card h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.admin-actions .action-card p,
.home-sections .section-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Admin Buttons */
.btn-primary-admin {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-primary-admin:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    color: #000000;
}

.btn-secondary-admin {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-admin:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.section-actions,
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.section-actions .btn,
.action-buttons .btn {
    width: 100%;
    text-align: center;
}

/* Responsive Admin Styles */
@media (max-width: 768px) {
    .admin-nav {
        padding: 0 15px;
    }

    .admin-nav-links {
        gap: 10px;
    }

    .admin-nav-links a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .admin-logo {
        font-size: 1.2rem;
    }

    .admin-dashboard .dashboard-content,
    .admin-home .home-content {
        padding: 30px 15px;
    }

    .admin-dashboard .dashboard-header,
    .admin-home .home-header {
        padding: 20px;
        margin-bottom: 30px;
    }

    .admin-dashboard .dashboard-header h1,
    .admin-home .home-header h1 {
        font-size: 2rem;
    }

    .stats-overview {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .stats-grid {
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .admin-actions .action-card,
    .home-sections .section-card {
        padding: 25px 20px;
    }

    .admin-actions .action-card h3,
    .home-sections .section-card h3 {
        font-size: 1.4rem;
    }
}

/* High Zoom Content Adjustments */
@media screen and (min-width: 125%) {
    .admin-dashboard,
    .admin-home {
        min-height: calc(100vh - 60px);
    }

    .admin-dashboard .dashboard-content,
    .admin-home .home-content {
        padding: 20px 15px;
    }

    .admin-dashboard .dashboard-header,
    .admin-home .home-header {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .admin-dashboard .dashboard-header h1,
    .admin-home .home-header h1 {
        font-size: 2rem;
    }

    .stats-overview {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .admin-actions .action-card,
    .home-sections .section-card {
        padding: 20px 15px;
    }

    .admin-actions .action-card h3,
    .home-sections .section-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .admin-nav-links {
        display: none; /* Hide navigation links on very small screens */
    }

    .admin-nav {
        justify-content: space-between;
        padding: 0 20px;
    }

    .admin-dashboard .dashboard-header h1,
    .admin-home .home-header h1 {
        font-size: 1.8rem;
    }

    .stats-overview h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .admin-actions .action-card h3,
    .home-sections .section-card h3 {
        font-size: 1.3rem;
    }

    .btn-primary-admin,
    .btn-secondary-admin {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* High Zoom Support for Admin Panel */
@media screen and (min-width: 125%) {
    .admin-header {
        padding: 15px 0;
    }

    .admin-nav {
        padding: 0 15px;
    }

    .admin-nav-links {
        gap: 15px;
        flex-wrap: wrap;
        align-items: center;
    }

    .admin-nav-links a {
        padding: 8px 15px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .admin-logo {
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .admin-logout {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media screen and (min-width: 150%) {
    .admin-header {
        padding: 10px 0;
    }

    .admin-nav {
        padding: 0 10px;
        flex-wrap: wrap;
    }

    .admin-nav-links {
        gap: 10px;
        max-width: 60%;
    }

    .admin-nav-links a {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .admin-logo {
        font-size: 1.2rem;
    }

    .admin-logout {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

@media screen and (min-width: 200%) {
    .admin-header {
        padding: 8px 0;
    }

    .admin-nav {
        padding: 0 8px;
    }

    .admin-nav-links {
        gap: 8px;
        max-width: 55%;
    }

    .admin-nav-links a {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    .admin-logo {
        font-size: 1.1rem;
    }

    .admin-logout {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
}

/* Prevent horizontal scroll on high zoom */
@media screen and (min-width: 125%) {
    body {
        overflow-x: auto;
    }

    .admin-header {
        position: sticky;
        top: 0;
        z-index: 100;
        min-width: 1000px;
        width: 100vw;
    }

    .admin-nav {
        min-width: 1000px;
        width: 100vw;
    }
}

/* About Page Styles */
.about-hero {
padding: 150px 0 100px;
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
color: #ffffff;
text-align: center;
position: relative;
overflow: hidden;
}

.about-hero::before {
content: '';
position: absolute;
inset: 0;
background:
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0, transparent 50%);
pointer-events: none;
}

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

.about-hero h1 {
font-size: 3.5rem;
color: #FFD700;
margin-bottom: 20px;
font-family: 'Playfair Display', serif;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero .hero-subtitle {
font-size: 1.3rem;
color: #cccccc;
font-weight: 300;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.about-legacy {
padding: 40px; /* Uniform padding */
background-color: #f8f8f8;
border-radius: 15px; /* Match testimonial style */
margin-top: 40px; /* Add space below section-divider */
text-align: center; /* Center text content to match testimonial style */
}

.about-legacy h2 {
color: #000000;
font-size: 2.5rem;
margin-bottom: 40px;
text-align: center;
position: relative;
}

.about-legacy h2::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: #FFD700;
}

.about-legacy h3 {
color: #000000;
margin-bottom: 20px;
font-size: 1.4rem;
margin-top: 40px;
}

.about-legacy h3:first-of-type {
margin-top: 0;
}

.about-legacy p {
color: #555;
line-height: 1.8;
margin-bottom: 25px;
font-size: 1.1rem;
max-width: 800px; /* Constrain text width for readability */
margin-left: auto;
margin-right: auto;
}

.our-mission {
padding: 100px 0;
background-color: #ffffff;
}

.mission-content h2 {
color: #000000;
font-size: 2.5rem;
margin-bottom: 60px;
text-align: center;
position: relative;
}

.mission-content h2::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: #FFD700;
}

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

.mission-item {
text-align: center;
padding: 40px 30px;
background-color: #f8f8f8;
border-radius: 15px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
font-size: 3rem;
margin-bottom: 20px;
}

.mission-item h3 {
color: #000000;
margin-bottom: 15px;
font-size: 1.4rem;
}

.mission-item p {
color: #666;
line-height: 1.6;
}

.our-journey {
padding: 100px 0;
background-color: #f8f8f8;
}

.journey-content h2 {
color: #000000;
font-size: 2.5rem;
margin-bottom: 60px;
text-align: center;
position: relative;
}

.journey-content h2::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: #FFD700;
}

.timeline {
max-width: 800px;
margin: 0 auto;
position: relative;
}

.timeline::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 2px;
height: 100%;
background-color: #FFD700;
top: 0;
}

.timeline-item {
display: flex;
margin-bottom: 60px;
position: relative;
}

.timeline-item:nth-child(odd) {
flex-direction: row;
}

.timeline-item:nth-child(even) {
flex-direction: row-reverse;
}

.timeline-year {
background-color: #FFD700;
color: #000000;
font-weight: bold;
font-size: 1.1rem;
padding: 10px 20px;
border-radius: 25px;
min-width: 80px;
text-align: center;
margin: 0 20px;
position: relative;
z-index: 2;
}

.timeline-content {
flex: 1;
background-color: #ffffff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
position: relative;
}

.timeline-content::before {
content: '';
position: absolute;
top: 20px;
width: 0;
height: 0;
border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
right: -20px;
border-left-color: #ffffff;
}

.timeline-item:nth-child(even) .timeline-content::before {
left: -20px;
border-right-color: #ffffff;
}

.timeline-content h3 {
color: #000000;
margin-bottom: 10px;
font-size: 1.3rem;
}

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

.about-stats-section {
padding: 100px 0;
background-color: #ffffff;
}

.about-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-top: 60px;
}

.about-stats .stat {
text-align: center;
padding: 40px 30px;
background-color: #f8f8f8;
border-radius: 15px;
border-top: 4px solid #FFD700;
transition: transform 0.3s ease;
}

.about-stats .stat:hover {
transform: translateY(-5px);
}

.about-stats .stat h4 {
font-size: 2.5rem;
color: #FFD700;
margin-bottom: 10px;
}

.about-stats .stat p {
color: #666;
font-weight: 600;
font-size: 1rem;
}

.about-cta {
padding: 100px 0;
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
color: #ffffff;
text-align: center;
}

.cta-content h2 {
color: #FFD700;
font-size: 2.5rem;
margin-bottom: 20px;
}

.cta-content p {
color: #cccccc;
font-size: 1.2rem;
margin-bottom: 40px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

/* Responsive About Page Styles */
@media (max-width: 768px) {
.about-hero {
    padding: 120px 0 80px;
}

.about-hero h1 {
    font-size: 2.5rem;
}

.about-hero .hero-subtitle {
    font-size: 1.1rem;
}

.about-legacy,
.our-mission,
.our-journey,
.about-stats-section,
.about-cta {
    padding: 60px 0;
}

.about-legacy h2,
.mission-content h2,
.journey-content h2,
.cta-content h2 {
    font-size: 2rem;
}

.mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.timeline::before {
    left: 30px;
}

.timeline-item {
    flex-direction: column !important;
    padding-left: 60px;
}

.timeline-year {
    position: absolute;
    left: 0;
    margin: 0;
    min-width: 60px;
    padding: 8px 12px;
    font-size: 1rem;
}

.timeline-content::before {
    display: none;
}

.about-stats {
    grid-template-columns: 1fr;
    gap: 30px;
}

.cta-buttons {
    flex-direction: column;
    align-items: center;
}

.cta-buttons .btn {
    width: 100%;
    max-width: 280px;
}
}

@media (max-width: 480px) {
.about-hero h1 {
    font-size: 2rem;
}

.about-legacy,
.our-mission,
.our-journey,
.about-stats-section,
.about-cta {
    padding: 50px 0;
}

.about-legacy h2,
.mission-content h2,
.journey-content h2,
.cta-content h2 {
    font-size: 1.8rem;
}

.timeline-item {
    padding-left: 50px;
}

.timeline-year {
    min-width: 50px;
    padding: 6px 10px;
    font-size: 0.9rem;
}

.timeline-content {
    padding: 20px;
}
}

/* Video Grid Styling */
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
margin-top: 40px;
}

.video-card {
background-color: #f8f8f8;
border-radius: 15px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-top: 4px solid #FFD700;
}

.video-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

.video-info {
padding: 25px;
}

.video-info h4 {
color: #000000;
margin-bottom: 10px;
font-size: 1.2rem;
}

.video-info p {
color: #666;
line-height: 1.5;
font-size: 0.95rem;
}

/* Responsive Video Grid */
@media (max-width: 768px) {
.video-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.video-container {
    padding-bottom: 56.25%;
}
}

/* Theatre Shows Grid Styling */
.theatre-shows-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 40px;
}

.theatre-shows-grid .show-card {
background-color: #f8f8f8;
padding: 25px;
border-radius: 12px;
transition: all 0.3s ease;
border-top: 3px solid #FFD700;
position: relative;
}

.theatre-shows-grid .show-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.theatre-shows-grid .show-card h4 {
color: #000000;
margin-bottom: 8px;
font-size: 1.15rem;
line-height: 1.3;
}

.audience {
color: #FFD700 !important;
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.theatre-shows-grid .show-card p:last-of-type {
color: #666;
line-height: 1.5;
font-size: 0.95rem;
}

/* Responsive Theatre Shows Grid */
@media (max-width: 768px) {
.theatre-shows-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.theatre-shows-grid .show-card {
    padding: 20px;
}
}