/* Color Palette Variables */
:root {
    /* Rich Navy Color Palette */
    --color-primary-navy: #1a365d;
    --color-navy-accent: #2c5aa0;
    --color-pure-white: #ffffff;
    --color-light-grey: #f7fafc;
    --color-medium-grey: #e2e8f0;
    --color-dark-grey: #2d3748;
    --color-text-navy: #2d3748;
    
    /* Additional semantic colors */
    --color-text-primary: var(--color-text-navy);
    --color-text-secondary: #718096;
    --color-background-primary: var(--color-pure-white);
    --color-background-secondary: var(--color-light-grey);
    --color-border: var(--color-medium-grey);
    --color-accent: var(--color-navy-accent);
    --color-accent-hover: var(--color-primary-navy);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background: radial-gradient(ellipse at center, #1a365d 0%, #0f1419 100%);
    padding: 0 2rem;
    min-height: 100vh;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background-primary);
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 
        0 0 60px rgba(0, 0, 0, 0.5),
        0 20px 80px rgba(0, 0, 0, 0.3),
        inset 0 0 120px rgba(255, 255, 255, 0.02),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow-x: hidden;
    position: relative;
}

/* Focus styles for accessibility */
:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: var(--color-pure-white);
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Header */
.main-nav {
    background: var(--color-background-primary);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    min-height: 70px;
    gap: 3rem;
}

/* Logo/Brand */
.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-text-primary);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-brand img {
    height: 55px;
    width: auto;
}

/* Desktop Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--color-pure-white);
    background-color: var(--color-accent);
    border-radius: 4px;
}

.nav-links a.active {
    background: var(--color-accent);
    color: var(--color-pure-white);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.language-toggle a {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.language-toggle a:hover {
    background-color: var(--color-accent);
    color: var(--color-pure-white);
}

/* Dropdown Menu System */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 0 4px 4px 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0;
}

/* L-shaped connection: no gap bridge needed for seamless connection */

.nav-dropdown .dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-pure-white);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 0;
    background: none;
}

.nav-dropdown .dropdown-content a:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-pure-white);
}

/* L-shaped connection: dropdown toggle gets top-rounded corners on hover */
.nav-dropdown:hover .dropdown-toggle {
    border-radius: 4px 4px 0 0;
    background-color: var(--color-accent);
    color: var(--color-pure-white);
    border-bottom: none;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.8em;
    margin-left: 0.5rem;
    opacity: 0.7;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: var(--color-pure-white);
    border-top: 1px solid var(--color-medium-grey);
    padding: 1rem 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mobile-nav[aria-hidden="false"] {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

/* Parent section indicators */
.mobile-nav a.mobile-nav-parent {
    font-weight: 600;
    color: var(--color-primary-navy);
    position: relative;
}

.mobile-nav a.mobile-nav-parent::after {
    content: '▼';
    position: absolute;
    right: 0;
    font-size: 0.8rem;
    color: var(--color-navy-accent);
}

/* Child section indentation */
.mobile-nav a.mobile-nav-child {
    padding-left: 1.5rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    position: relative;
}

.mobile-nav a.mobile-nav-child::before {
    content: '└';
    position: absolute;
    left: 0.5rem;
    color: var(--color-medium-grey);
    font-size: 1rem;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--color-primary-navy);
}

.mobile-nav .language-link {
    border-top: 1px solid var(--color-medium-grey);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.mobile-language-switcher .lang-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
    padding: 0.5rem;
    border-radius: 4px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 140px);
    margin-top: 0;
}

/* Seamless flow - remove gaps */
main {
    margin-top: 0;
}

/* Content sections flow seamlessly */
section + section {
    margin-top: 0;
}

/* Hero Section - Final Test 3 Beautiful Blue Gradient */
.hero {
    /* Test 3 layered approach: light blue base + gradient overlay */
    background-color: #e3f2fd;
    background-image: linear-gradient(135deg, 
        rgba(26, 54, 93, 0.03) 0%, 
        rgba(44, 90, 160, 0.02) 50%, 
        rgba(247, 250, 252, 1) 100%
    );
    color: var(--color-text-primary);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    margin-top: 0;
}

/* L1 Hero (default) - Full treatment with wider lines for container */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-navy-accent) 50%, transparent 100%);
}

/* L2 Hero - Scaled down */
.hero.hero-l2 {
    padding: 3rem 2rem;
}

.hero.hero-l2::after {
    width: 600px;
}

/* L3 Hero - Minimal */
.hero.hero-l3 {
    padding: 2.5rem 2rem;
}

.hero.hero-l3::after {
    width: 400px;
    height: 2px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* L1 Hero Typography */
.hero h1, .hero h2 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-navy);
    font-weight: 100;
    letter-spacing: -1px;
}

.hero .hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-navy-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-navy-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* L2 Hero Typography */
.hero.hero-l2 h1 {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: normal;
    color: var(--color-primary-navy);
}

.hero.hero-l2 .hero-subtitle {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    color: var(--color-navy-accent);
}

/* L3 Hero Typography */
.hero.hero-l3 h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: normal;
    color: var(--color-primary-navy);
}

.hero.hero-l3 .hero-subtitle {
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    color: var(--color-navy-accent);
}

.cta-button {
    display: inline-block;
    background: var(--color-primary-navy);
    color: var(--color-pure-white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    border: none;
}

.cta-button:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

/* Section Styles - Option B Integration */
section {
    padding: 4rem 0;
}

/* Featured sections with gradient background */
.featured-productions,
.company-overview {
    background: linear-gradient(180deg, 
        rgba(247, 250, 252, 0.8) 0%,
        var(--color-pure-white) 100%
    );
    padding: 4rem 0;
    margin-top: 0;
}

.featured-productions h2,
.company-overview h2,
section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 200;
    color: var(--color-primary-navy);
}

/* L2/L3 content sections - scaled down */
.productions-section,
.about-content,
.cast-crew,
.production-details {
    background: linear-gradient(180deg, 
        rgba(247, 250, 252, 0.6) 0%,
        var(--color-pure-white) 100%
    );
    padding: 3rem 0;
}

.productions-section h2,
.about-content h2,
.cast-crew h2,
.production-details h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-primary-navy);
}

/* Production Grid - Option B styling */
.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.production-card {
    background: var(--color-pure-white);
    border-radius: 8px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.08);
    transition: all 0.3s ease;
}

.production-card:hover {
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.12);
    transform: translateY(-2px);
}

.production-image {
    height: 200px;
    overflow: hidden;
}

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

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

/* Horu-Froia image positioning adjustment */
.horu-froia-card .production-image img {
    object-position: top center;
}

.horu-froia-card:hover .production-image img {
    transform: scale(1.05);
    object-position: top center;
}

/* Featured flyer image in gallery pages */
.featured-image {
    margin-bottom: 2rem;
    text-align: center;
}

.production-flyer {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.flyer-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.production-info {
    padding: 2rem;
}

.production-info h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary-navy);
    font-weight: 400;
    font-size: 1.3rem;
}

.production-info h3 a {
    text-decoration: none;
    color: var(--color-primary-navy);
}

.production-info h3 a:hover {
    color: var(--color-accent);
}

.production-info time,
.production-year {
    display: block;
    color: var(--color-navy-accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.production-info p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* View All Link */
.view-all {
    text-align: center;
}

.view-all-link {
    display: inline-block;
    background: var(--color-primary-navy);
    color: var(--color-pure-white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.2);
}

/* Company Overview */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.overview-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.learn-more-link {
    display: inline-block;
    color: var(--color-primary-navy);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}

.learn-more-link:hover {
    text-decoration: underline;
}

.overview-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Footer - Footer A: Gentle gradient */
.main-footer {
    background: linear-gradient(180deg, var(--color-pure-white) 0%, var(--color-background-secondary) 100%);
    border-top: 1px solid var(--color-light-grey);
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    margin-top: 0;
}

.main-footer p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

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


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light-grey);
    color: var(--color-text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Responsive navy background spacing */
    html {
        padding: 0 1rem;
    }
    
    /* Hide desktop nav links, show mobile menu toggle */
    .nav-links {
        display: none;
    }
    
    .language-toggle {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        position: relative;
    }
    
    /* Adjust hero lines - mobile responsive */
    .hero::after {
        width: 400px;
    }
    
    .hero.hero-l2::after {
        width: 300px;
    }
    
    .hero.hero-l3::after {
        width: 200px;
    }
    
    .hero h1,
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero.hero-l2 h1 {
        font-size: 2rem;
    }
    
    .hero.hero-l3 h1 {
        font-size: 1.8rem;
    }
    
    .hero .hero-subtitle,
    .hero-description {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    /* Single column layout */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-text h2 {
        text-align: center;
    }
    
    /* Adjust production grid */
    .production-grid {
        grid-template-columns: 1fr;
    }
    
    /* Adjust sections padding */
    section {
        padding: 2rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Mobile navy background spacing */
    html {
        padding: 0 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .hero::after {
        width: 300px;
    }
    
    .hero.hero-l2::after {
        width: 250px;
    }
    
    .hero.hero-l3::after {
        width: 200px;
    }
    
    .hero h1,
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero.hero-l2 h1 {
        font-size: 1.8rem;
    }
    
    .hero.hero-l3 h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 4rem 1.5rem;
    }
    
    .production-info {
        padding: 1rem;
    }
}

/* Small mobile screens */
@media (max-width: 320px) {
    .hero::after {
        width: 200px;
    }
    
    .hero.hero-l2::after {
        width: 150px;
    }
    
    .hero.hero-l3::after {
        width: 120px;
    }
    
    .hero h1,
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero.hero-l2 h1 {
        font-size: 1.5rem;
    }
    
    .hero.hero-l3 h1 {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 3.5rem 1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cta-button {
        border: 2px solid white;
    }
    
    .production-card {
        border: 1px solid #333;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-image {
    opacity: 0.8;
}

/* Page Header Styles */
.page-header {
    background: #f8f9fa;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: #333;
}

.page-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Production Page Styles */
.productions-section {
    padding: 4rem 0;
}

.production-card .production-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.production-link,
.gallery-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.production-link {
    background: var(--color-primary-navy);
    color: var(--color-pure-white);
}

.production-link:hover {
    background: var(--color-accent-hover);
}

.gallery-link {
    background: var(--color-light-grey);
    color: var(--color-text-primary);
    border: 1px solid var(--color-medium-grey);
}

.gallery-link:hover {
    background: var(--color-medium-grey);
    border-color: var(--color-dark-grey);
}

.production-year {
    font-weight: 600;
    color: var(--color-primary-navy);
    font-size: 1rem;
}

/* Breadcrumb Styles - Seamless with Hero */
.breadcrumb {
    background: var(--color-light-grey);
    padding: 0.5rem 0;
    margin-bottom: 0;
    border-bottom: none;
    font-size: 0.9rem;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: var(--color-accent);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: #666;
    font-weight: 500;
}

/* Gallery Styles */
.gallery-section {
    padding: 4rem 0;
}

.gallery-instructions {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.gallery-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-info h3 {
    margin-bottom: 1rem;
    color: #333;
}

.gallery-info dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
}

.gallery-info dt {
    font-weight: 600;
    color: #333;
}

.gallery-info dd {
    color: #666;
}

.navigation-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-link,
.productions-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link {
    background: var(--color-light-grey);
    color: var(--color-text-primary);
    border: 1px solid var(--color-medium-grey);
}

.back-link:hover {
    background: var(--color-medium-grey);
    border-color: var(--color-dark-grey);
}

.productions-link {
    background: var(--color-primary-navy);
    color: var(--color-pure-white);
}

.productions-link:hover {
    background: var(--color-accent-hover);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Timeline Styles */
.production-archive {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary-navy);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

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

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

.timeline-year {
    background: var(--color-primary-navy);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 0 2rem;
    max-width: 250px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    font-size: 0.9rem;
}

/* About page specific styles */
.about-content {
    padding: 4rem 0;
}

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

.about-intro {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.goals-section {
    margin: 3rem 0;
}

.goal-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.goal-item h3 {
    margin-bottom: 1rem;
    color: var(--color-primary-navy);
}

.goal-item p:first-of-type {
    margin-bottom: 1rem;
}

.social-links {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.social-links h3 {
    margin-bottom: 1rem;
    color: #333;
}

.projects-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.projects-note p {
    color: #666;
    font-style: italic;
}

/* Error message styles */
.error-message {
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
    border-color: #d32f2f;
    box-shadow: 0 0 0 1px #d32f2f;
}

/* Print styles */
@media print {
    .site-header,
    .mobile-nav,
    .cta-button,
    .site-footer,
    .lightbox {
        display: none;
    }
    
    .main-content {
        margin: 0;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
}