/* More Info Page - Classical Theatre Styles */

:root {
    /* Color Palette */
    --primary-burgundy: #8B1538;
    --primary-navy: #1A2B4C;
    --accent-gold: #D4AF37;
    --light-burgundy: #A64D79;
    --dark-navy: #0F1B2E;
    --warm-white: #FEFCF7;
    --soft-gray: #F5F5F5;
    --medium-gray: #666666;
    --light-gray: #E8E8E8;
    --text-dark: #2C2C2C;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 2rem;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-white);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
    color: var(--primary-navy);
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-burgundy);
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary-burgundy);
    color: white;
}

.btn-primary:hover {
    background-color: var(--light-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-navy);
}

.btn.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: #1c1c1b;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: var(--primary-navy);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-logo i {
    color: var(--accent-gold);
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Show Hero Section */
.show-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 43, 76, 0.85) 0%,
        rgba(139, 21, 56, 0.7) 100%
    );
    z-index: -1;
}

.hero-content {
    width: 100%;
    color: white;
    text-align: center;
}

.show-badge {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.show-tagline {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.detail-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Synopsis Section */
.synopsis {
    padding: var(--section-padding);
    background-color: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.synopsis-image {
    position: relative;
}

.synopsis-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.image-caption {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    text-align: center;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
}

.content-highlights {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--soft-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-gold);
}

.highlight-list {
    list-style: none;
    padding-left: 0;
}

.highlight-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-dark);
}

.highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-burgundy);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Cast & Crew Section */
.cast-crew {
    padding: var(--section-padding);
    background-color: var(--soft-gray);
}

.crew-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.crew-section h3 {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
}

.cast-member {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.member-info h4 {
    margin-bottom: 0.25rem;
}

.role {
    font-style: italic;
    color: var(--primary-burgundy);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.bio {
    font-size: 1rem;
    line-height: 1.6;
}

.crew-list {
    display: grid;
    gap: 1rem;
}

.crew-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.crew-member h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--medium-gray);
}

.crew-member p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

/* Venue & Tickets Section */
.venue-tickets {
    padding: var(--section-padding);
    background-color: white;
}

.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.venue-details h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--soft-gray);
    border-radius: var(--border-radius);
}

.address i {
    color: var(--primary-burgundy);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.venue-description,
.accessibility-info,
.parking-info {
    margin-bottom: 2rem;
}

.accessibility-info h4,
.parking-info h4 {
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.schedule-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px rgba(26, 43, 76, 0.3);
}

.schedule-list {
    margin-bottom: 2rem;
}

.performance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.performance:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.performance.featured {
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-gold);
}

.perf-date .day {
    font-weight: 600;
    display: block;
}

.perf-date .date {
    font-size: 0.9rem;
    opacity: 0.9;
}

.perf-time {
    font-weight: 600;
    color: var(--accent-gold);
}

.perf-note {
    font-size: 0.8rem;
    opacity: 0.8;
    font-style: italic;
}

.ticket-pricing {
    margin-bottom: 2rem;
}

.ticket-pricing h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.pricing-info {
    margin-bottom: 1rem;
}

.price-tier {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tier-name {
    font-weight: 500;
}

.tier-price {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.pricing-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.ticket-actions {
    text-align: center;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-info a {
    color: var(--accent-gold);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Reviews Section */
.reviews {
    padding: var(--section-padding);
    background-color: var(--soft-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.review-quote {
    margin-bottom: 1.5rem;
}

.review-quote i {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.review-quote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.review-source {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--light-gray);
    padding-top: 1rem;
}

.review-source strong {
    color: var(--primary-navy);
    font-family: var(--font-heading);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--dark-navy);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo i {
    color: var(--accent-gold);
    font-size: 1.75rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-section .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section .contact-info i {
    color: var(--accent-gold);
    width: 20px;
}

.footer-section .contact-info a {
    color: var(--accent-gold);
    text-decoration: none;
}

.footer-section .contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid,
    .venue-grid,
    .crew-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    :root {
        --section-padding: 60px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-card {
        padding: 1.5rem;
    }
    
    .performance {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .cast-member {
        flex-direction: column;
        text-align: center;
    }
    
    .crew-member {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}