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

:root {
    --primary-color: #8b1538;
    --secondary-color: #c41e3a;
    --accent-color: #d4af37;
    --dark-bg: #1a0a0f;
    --light-bg: #f8f5f2;
    --text-dark: #2d1b1f;
    --text-light: #f8f5f2;
    --text-muted: #6b5b5e;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    position: relative;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-color);
    letter-spacing: 2px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu li {
    display: inline-block;
    flex-shrink: 0;
}

.nav-link {
    color: var(--text-light);
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-link.active {
    color: var(--accent-color);
    font-weight: 400;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Actors Collage */
.actors-collage {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.actors-collage:hover {
    opacity: 0.9;
}

.actor-portrait {
    position: relative;
    width: 70px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.actor-portrait:hover {
    transform: translateY(-10px) scale(1.15);
    border-color: var(--text-light);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.actor-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.actor-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.actor-name {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 10, 15, 0.9);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.actor-portrait:hover .actor-name {
    opacity: 1;
    bottom: -35px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="50%" y="50%" font-size="60" text-anchor="middle" dominant-baseline="middle" opacity="0.03" fill="white">🎭</text></svg>');
    background-size: 200px 200px;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 10, 15, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    padding: 2rem;
}

.hero-title {
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 8px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2.5rem;
    color: rgba(248, 245, 242, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
}

.section-subtitle-about {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 0.5rem;
}

/* About Section */
.about {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    gap: 4rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text .lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.about-name-explanation {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 21, 56, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    font-size: 1.15rem !important;
}

.about-name-explanation strong {
    color: var(--primary-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Performances Section */
.performances {
    background: white;
}

.subsection-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-family: 'Playfair Display', serif;
}

/* Featured Performance */
.featured-performance-container {
    margin-bottom: 3rem;
}

.featured-performance {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    padding: 3rem;
    color: var(--text-light);
    text-align: center;
    box-shadow: 0 15px 50px rgba(139, 21, 56, 0.3);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.featured-performance:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.4);
}

.featured-performance h3 {
    color: var(--accent-color);
}

.featured-performance::before {
    content: '⭐';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.featured-performance.is-premiere {
    background: linear-gradient(135deg, var(--accent-color) 0%, #daa520 100%);
    border: 3px solid var(--accent-color);
}

.featured-performance.is-premiere .featured-badge {
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.featured-performance.is-premiere h3 {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.featured-performance.is-premiere .featured-after-party {
    color: var(--primary-color);
}

.featured-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.featured-performance h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.featured-datetime {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.featured-datetime span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-after-party {
    margin-top: 1.5rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    border: none;
}

/* Upcoming Performances */
.upcoming-performances-section {
    margin-bottom: 3rem;
}

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

.performance-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.performance-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.performance-image::before {
    content: '🎭';
    font-size: 6rem;
    opacity: 0.2;
    position: absolute;
}

.performance-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.performance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.performance-status {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.performance-status.upcoming {
    background: #4a90e2;
    color: white;
}

.performance-status.past {
    background: #6b5b5e;
    color: white;
}

.performance-content {
    padding: 2rem;
}

.performance-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.performance-author {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.performance-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.performance-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Past Performances */
.past-performances-section {
    margin-top: 3rem;
}

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

.past-performance-item {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border-left: 4px solid var(--text-muted);
}

.past-performance-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.past-performance-info h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.past-performance-date {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.past-performance-date span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* No Performances State */
.no-performances {
    text-align: center;
    padding: 4rem 2rem;
}

.no-performances-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-performances h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-muted);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.no-performances p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Venue Section */
.venue {
    background: var(--light-bg);
}

.venue-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.venue-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-bg);
    margin-bottom: 2rem;
}

.venue-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.venue-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.venue-location {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.venue-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.venue-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 2px solid var(--light-bg);
    border-bottom: 2px solid var(--light-bg);
}

.venue-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.venue-info-item strong {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.venue-info-item span:last-child {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.venue-description {
    margin-bottom: 2.5rem;
}

.venue-description h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.venue-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.menu-list span {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.venue-support {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.venue-support p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.venue-cta {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid var(--light-bg);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
}

/* Gallery Section - Odehrané hry */
.gallery {
    background: var(--light-bg);
}

.plays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.play-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.play-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.play-image::before {
    content: '🎭';
    font-size: 8rem;
    opacity: 0.2;
    position: absolute;
}

.play-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.play-year {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.play-content {
    padding: 1.5rem;
}

.play-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.play-info {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.play-card-placeholder {
    background: var(--light-bg);
    border: 2px dashed var(--text-muted);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.play-card-placeholder p {
    font-size: 1.1rem;
}

/* ===========================
   MEMBERS SECTION
   =========================== */

.members {
    padding: 6rem 0;
    background: var(--light-bg);
    width: 100%;
}

.members .section-header {
    margin-bottom: 3rem;
}

.members-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.member-card {
    position: relative;
    width: 12.5%;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

@media (max-width: 1400px) {
    .member-card {
        width: 25%;
    }
}

@media (max-width: 768px) {
    .member-card {
        width: 50%;
    }
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    display: block;
}

.member-card:hover .member-photo {
    filter: grayscale(0%);
}

.member-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-color);
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.member-card:hover .member-name {
    transform: translateY(0);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 0;
}

.newsletter-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.newsletter-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 600;
}

.newsletter-form {
    margin-top: 2rem;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
}

.newsletter-input-group input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-input-group .btn {
    white-space: nowrap;
    padding: 1rem 2rem;
}

.newsletter-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

.newsletter-success {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    border-radius: 15px;
    border: 2px solid #28a745;
}

.success-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.newsletter-success p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-card p {
    color: var(--text-dark);
}

.contact-card a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(248, 245, 242, 0.9);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.footer-tagline {
    color: rgba(248, 245, 242, 0.6);
    font-style: italic;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 245, 242, 0.1);
    color: rgba(248, 245, 242, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

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

    .performances-grid,
    .gallery-grid,
    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Venue section responsive */
    .venue-box {
        padding: 2rem 1.5rem;
    }

    .venue-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    /* Newsletter responsive */
    .newsletter-box {
        padding: 2rem 1.5rem;
    }

    .newsletter-box h3 {
        font-size: 1.4rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group input,
    .newsletter-input-group .btn {
        width: 100%;
        min-width: 100%;
    }

    /* Actors collage responsive */
    .actors-collage {
        top: 8%;
        gap: 0.8rem;
        flex-wrap: wrap;
        max-width: 90%;
        justify-content: center;
    }

    .actor-portrait {
        width: 60px;
        height: 95px;
    }

    .actor-placeholder {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    .actors-collage {
        gap: 0.5rem;
    }

    .actor-portrait {
        width: 50px;
        height: 80px;
        border-width: 2px;
    }

    .actor-placeholder {
        font-size: 1.2rem;
    }

    .actor-name {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
}

