:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #c41e3a;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-light: #f8f8f8;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    /* Responsive base font size: scales conservatively from 14px (mobile) to 18px (large screens) */
    font-size: clamp(0.875rem, 0.3rem + 0.5vw, 1.125rem);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    font-size: 1rem; /* Inherits from html, scales responsively */
}

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

/* Base container padding - will be overridden by media queries for larger screens */
.main > .container {
    padding-top: 120px; /* Account for fixed header (80px min-height + logo translateY + padding) */
}

/* Standard Responsive Breakpoints - Content-Driven Approach */

/* Tablet (768px+) - md */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

/* Desktop (992px+) - lg */
@media (min-width: 992px) {
    .container {
        max-width: 1200px;
        padding: 0 30px;
    }

    .production-detail-row-1 {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* Large Desktop (1200px+) - xl */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }

    .hero-with-image {
        min-height: calc(100vh - 80px);
        height: calc(100vh - 80px);
        max-height: none;
    }

    .hero-shows {
        max-width: 1400px;
    }

    .hero-content-bottom {
        max-width: 1400px;
    }

    .production-detail-content {
        max-width: 1600px;
    }
    
    .production-detail-row-1 {
        grid-template-columns: 1fr 1.8fr;
    }
    
    .production-detail-description {
        padding: 2rem 3rem;
    }
    
    .main > .container {
        padding-top: 140px;
    }
    
    .page-header {
        scroll-margin-top: 140px;
    }
}

/* Extra Large Desktop (1400px+) - xxl - Consolidated for ultra-wide displays */
@media (min-width: 1400px) {
    html {
        /* Conservative scaling for ultra-wide: max 20px base font */
        font-size: clamp(0.875rem, 0.3rem + 0.5vw, 1.25rem);
    }

    .container {
        max-width: 1600px;
        padding: 0 50px;
    }

    .hero-shows {
        max-width: 1600px;
    }

    .hero-content-bottom {
        max-width: 1600px;
    }

    .production-detail-content {
        max-width: 1800px;
    }
    
    .production-detail-row-1 {
        grid-template-columns: 1fr 2fr;
    }
    
    .production-detail-description {
        padding: 2rem 3.5rem;
        font-size: clamp(1.2rem, 0.5vw + 0.5rem, 1.25rem);
    }

    .hero-show-item {
        padding: clamp(1.4rem, 1vw + 0.5rem, 2rem) clamp(1.8rem, 1.5vw + 0.5rem, 2.75rem);
    }

    .hero-show-ticket-icon {
        width: clamp(36px, 2vw + 4px, 44px);
        height: clamp(36px, 2vw + 4px, 44px);
    }

    .hero-show-ticket-icon svg {
        width: clamp(20px, 1vw + 2px, 24px);
        height: clamp(20px, 1vw + 2px, 24px);
    }

    .hero-cta {
        font-size: clamp(1.15rem, 0.3vw + 0.5rem, 1.25rem);
        padding: clamp(1.1rem, 0.3vw + 0.5rem, 1.25rem) clamp(2.75rem, 2vw + 0.5rem, 3.5rem);
    }

    .hero-content-top {
        margin-top: clamp(-2rem, -1vw - 0.5rem, -4rem);
    }

    .hero-content-bottom {
        margin-bottom: clamp(1rem, 0.5vw, 0);
    }

    .hero-with-image .hero-content {
        padding: clamp(4rem, 2vw + 1rem, 5rem) clamp(2rem, 1vw + 0.5rem, 3rem) clamp(2rem, 1vw + 0.5rem, 3rem);
        padding-top: max(clamp(4rem, 2vw + 1rem, 5rem), calc(80px + clamp(2rem, 1vw + 0.5rem, 3rem)));
    }
    
    .main > .container {
        padding-top: clamp(140px, 5vw + 20px, 180px);
    }
    
    .page-header {
        scroll-margin-top: clamp(140px, 5vw + 20px, 180px);
    }

    .header {
        min-height: clamp(80px, 3vw + 20px, 120px);
        padding: clamp(1rem, 0.5vw + 0.25rem, 1.5rem) 0;
    }

    .nav-logo {
        max-height: clamp(80px, 4vw + 20px, 120px);
    }
}

/* Header */
.header {
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    overflow: visible;
    min-height: 80px;
}

.header:hover {
    background-color: rgba(26, 26, 26, 0.95);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    color: white;
    text-decoration: none;
    font-size: clamp(1.25rem, 1.5vw + 0.25rem, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    position: relative;
    z-index: 1001;
}

.nav-logo {
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 1001;
    transform: translateY(10px);
}

.nav-brand-text {
    display: inline-block;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 3px 0;
    transition: var(--transition);
}

/* Main */
.main {
    min-height: calc(100vh - 200px);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.main > .hero,
.main > .hero-with-image {
    padding-top: 0;
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    margin-top: 0;
}

.hero-with-image {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 70vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    width: 100%;
    max-width: 100vw;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-with-image .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 4rem 2rem 2rem;
    padding-top: max(4rem, calc(80px + 2rem));
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    height: 100%;
}

.hero-content-top {
    flex: 0 0 auto;
    margin-top: 0;
    padding-top: 0;
}

    .hero-content-bottom {
        flex: 0 0 auto;
        margin-top: auto;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

.hero-with-image .hero-year {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-with-image .hero-title {
    font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-with-image .hero-subtitle {
    font-size: clamp(1.4rem, 1.5vw + 0.5rem, 1.8rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-dates {
    font-size: clamp(1.1rem, 1vw + 0.5rem, 1.3rem);
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-shows {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.5rem;
    font-size: clamp(0.95rem, 0.8vw + 0.5rem, 1.1rem);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-show-wrapper {
    position: relative;
    display: inline-block;
}

.hero-show-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.hero-show-link:hover {
    text-decoration: none;
    transform: translateY(-3px);
}

.hero-show-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.hero-show-link:hover .hero-show-item {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-show-venue {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.hero-show-location {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    font-style: italic;
}

.hero-show-area {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.hero-show-date {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.hero-show-separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin: 0 0.5rem;
}

.hero-show-ticket-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-show-ticket-icon:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #a01729;
}

.hero-show-ticket-icon svg {
    width: 18px;
    height: 18px;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: clamp(1rem, 0.5vw + 0.5rem, 1.1rem);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 0;
}

.hero-cta:hover {
    background-color: #a01729;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: clamp(2.5rem, 4vw + 0.5rem, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem);
    font-weight: 300;
    opacity: 0.9;
}

/* Current Production */
.current-production {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.production-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.production-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.production-card-link:hover {
    text-decoration: none;
}

.production-card-link:hover .production-card {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.production-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.production-image img,
.production-item-image img,
.production-item-image picture img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.production-image picture,
.production-item-image picture {
    display: block;
    width: 100%;
}

.production-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.production-year {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.production-title {
    font-size: clamp(2rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.production-author {
    font-size: clamp(1rem, 1vw + 0.25rem, 1.2rem);
    color: var(--text-light);
    font-style: italic;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Upcoming Shows */
.upcoming-shows {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.upcoming-shows-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.upcoming-show-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.upcoming-show-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.upcoming-show-venue {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.upcoming-show-location {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.upcoming-show-datetime {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.upcoming-show-tickets {
    margin-top: 1rem;
}

/* Productions Grid */
.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.production-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.production-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.production-item-no-link {
    cursor: default;
    opacity: 0.7;
}

.production-item-no-link:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.production-item-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.production-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

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

.production-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

.production-item-placeholder .pdf-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    gap: 0.5rem;
    padding: 1rem;
    transition: var(--transition);
    position: relative;
}

.production-item-placeholder .pdf-link:hover {
    transform: scale(1.1);
}

.production-item-placeholder .pdf-link svg {
    opacity: 0.9;
}

.production-item-placeholder .pdf-link span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.production-item-placeholder .pdf-link .year-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.production-item-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.production-item-year {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.production-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    flex: 1;
}

.production-item-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: auto;
}

.production-item-link {
    text-decoration: none;
    color: inherit;
}

.production-item-link:hover {
    text-decoration: none;
}

/* Production Detail Page */
.production-detail {
    padding: 3rem 0;
}

.production-detail-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.production-detail-year {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.production-detail-title {
    font-size: clamp(2.5rem, 4vw + 0.5rem, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.production-detail-author {
    font-size: clamp(1.25rem, 1.5vw + 0.25rem, 1.5rem);
    color: var(--text-light);
    font-style: italic;
}

.production-detail-content {
    max-width: 1600px;
    margin: 0 auto;
}

/* Production Detail Rows */
.production-detail-row {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.production-detail-row-1 {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
}

.production-detail-row-2 {
    grid-template-columns: 1fr;
}

.production-detail-row-3 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.production-detail-press-image,
.production-detail-poster {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
}

.production-detail-press-image img,
.production-detail-poster img {
    width: 100%;
    height: auto;
    display: block;
}

.production-detail-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    padding: 2rem 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    height: 100%;
    max-width: none;
}

.production-detail-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 2rem 0;
}

.production-detail-body p {
    margin-bottom: 1rem;
}

.production-detail-cast {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    height: 100%;
}

.production-detail-cast h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.cast-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cast-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cast-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(5px);
}

.cast-role {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.cast-name {
    color: var(--text-color);
    font-size: 1rem;
    text-align: right;
}

.crew-list {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.production-detail-author-bio {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    height: 100%;
}

.production-detail-author-bio h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.author-bio-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.author-bio-content p {
    margin-bottom: 1rem;
}

.author-bio-content strong {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.production-detail-performances {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    width: 100%;
}

.production-detail-performances h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.performances-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.performance-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.performance-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.performance-item.performance-past {
    opacity: 0.7;
}

.performance-item.performance-past .performance-name,
.performance-item.performance-past .performance-location,
.performance-item.performance-past .performance-datetime,
.performance-item.performance-past .performance-cost {
    text-decoration: line-through;
    color: var(--text-light);
}

.performance-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.performance-location {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.performance-area {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.performance-address {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.performance-maps-link {
    margin-bottom: 0.75rem;
}

.performance-maps-link .maps-link {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem 0;
}

.performance-maps-link .maps-link:hover {
    color: #a01729;
    text-decoration: underline;
}

.performance-datetime {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.performance-cost {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.performance-tickets {
    margin-top: auto;
    padding-top: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.ticket-info {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--text-light);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: auto;
}

.btn:hover {
    background-color: #a01729;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #a01729;
}

/* Page Header */
.page-header {
    padding: 1rem 0 2rem;
    text-align: center;
    margin-top: 0;
    scroll-margin-top: 120px; /* Account for fixed header when scrolling to anchor */
}

.page-header h1 {
    font-size: clamp(2.5rem, 4vw + 0.5rem, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: clamp(1rem, 0.5vw + 0.5rem, 1.1rem);
    color: var(--text-color);
    line-height: 1.8;
    text-align: left;
}

.page-content p {
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    width: 100%;
    max-width: 100vw;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-contact {
    font-size: clamp(0.9rem, 0.8vw + 0.25rem, 1.2rem);
    opacity: 0.8;
}

.footer-links {
    margin-top: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: clamp(0.9rem, 0.8vw + 0.25rem, 1.2rem);
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: clamp(0.875rem, 2vw + 0.5rem, 1rem);
    }
    
    .main > .container {
        padding-top: 100px; /* Account for fixed header on mobile */
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        max-height: 35px;
    }
    
    .nav-brand-text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-with-image {
        min-height: 60vh;
    }

    .hero-with-image .hero-title {
        font-size: 2.5rem;
    }

    .hero-with-image .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-dates {
        font-size: 1.1rem;
    }

    .hero-shows {
        font-size: 0.95rem;
        gap: 1rem;
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-show-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .hero-show-link {
        width: 100%;
    }

    .hero-show-item {
        padding: 1rem 1.25rem;
        padding-top: 2.5rem;
        width: 100%;
    }

    .hero-show-ticket-icon {
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
    }

    .hero-show-ticket-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero-show-venue {
        font-size: 0.95rem;
    }

    .hero-show-location {
        font-size: 0.85rem;
    }

    .hero-show-area {
        font-size: 0.75rem;
    }

    .hero-show-date {
        font-size: 0.85rem;
    }

    .hero-show-separator {
        display: none;
    }

    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-with-image .hero-content {
        padding: 3rem 1.5rem 1.5rem;
        padding-top: max(3rem, calc(80px + 1.5rem));
    }

    .hero-content-bottom {
        width: 100%;
        padding: 0;
    }

    .production-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .production-title {
        font-size: 2rem;
    }

    .productions-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .production-detail-title {
        font-size: 2rem;
    }

    .production-detail-performances h2 {
        font-size: 1.5rem;
    }

    .production-detail-row-1,
    .production-detail-row-3 {
        grid-template-columns: 1fr;
    }

    .production-detail-row-2 {
        grid-template-columns: 1fr;
    }

    .production-detail-poster {
        margin-bottom: 2rem;
    }

    .production-detail-description {
        padding: 1.5rem;
    }

    .production-detail-cast {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .production-detail-cast h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .cast-item {
        padding: 0.875rem 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .cast-role {
        font-size: 1rem;
    }

    .cast-name {
        text-align: left;
        font-size: 0.95rem;
    }

    .production-detail-author-bio {
        padding: 1.5rem;
    }

    .production-detail-author-bio h2 {
        font-size: 1.5rem;
    }

    .performances-grid {
        grid-template-columns: 1fr;
    }

    .author-bio-content {
        font-size: 1rem;
    }

    .upcoming-shows-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .upcoming-show-item {
        padding: 1.5rem;
    }

    .upcoming-show-venue {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: clamp(0.875rem, 2.5vw + 0.5rem, 0.9375rem);
    }
    
    .main > .container {
        padding-top: 95px; /* Account for fixed header on very small screens */
    }
    
    .productions-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-logo {
        max-height: 30px;
    }

    .nav-brand-link {
        gap: 0.5rem;
    }

    .nav-brand-text {
        font-size: 0.9rem;
    }

    .hero-with-image {
        min-height: 50vh;
    }

    .hero-with-image .hero-title {
        font-size: 2rem;
    }

    .hero-with-image .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-dates {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-with-image .hero-content {
        padding: 2rem 1rem 1rem;
        padding-top: max(2rem, calc(80px + 1rem));
    }

    .hero-content-bottom {
        width: 100%;
        padding: 0;
    }

    .hero-shows {
        gap: 0.875rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-show-item {
        padding-top: 2.25rem;
    }

    .hero-show-ticket-icon {
        width: 26px;
        height: 26px;
        top: 8px;
        right: 8px;
    }

    .hero-show-ticket-icon svg {
        width: 14px;
        height: 14px;
    }
}

