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

body {
    font-family: 'Playfair Display', serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('background.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spotlight-effect {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(200, 200, 200, 0.2) 30%, 
        rgba(100, 100, 100, 0.1) 60%, 
        transparent 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 2rem;
}

.presenter {
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.play-title {
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    color: #dc2626;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    line-height: 0.9;
}

.title-line {
    display: block;
}

.author {
    font-size: 1.8rem;
    font-style: italic;
    color: #dc2626;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Show Information */
.show-info {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    width: auto;
    max-width: 400px;
}

.show-dates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.show-date {
    text-align: right;
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.day-name {
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.date-number {
    font-size: 1.2rem;
    font-style: italic;
    color: #dc2626;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.show-time {
    font-size: 1.3rem;
    font-style: italic;
    color: #dc2626;
    margin-bottom: 0.3rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.show-times {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}


/* Content Warning */
.content-warning {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.warning-icon {
    font-size: 1.5rem;
    color: #dc2626;
    background: #dc2626;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.warning-text {
    font-size: 0.9rem;
    font-style: italic;
    color: #dc2626;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
}

.about h2 {
    font-size: 2.5rem;
    font-style: italic;
    color: #dc2626;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-info-section {
    background: rgba(220, 38, 38, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    text-align: center;
    margin-top: 1rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-info-section h3 {
    font-size: 1.2rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.ticket-price {
    font-size: 1.8rem;
    color: #dc2626;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-style: italic;
}

.ticket-location {
    font-size: 0.9rem;
    color: #fff;
    font-style: italic;
}

/* Cast and Crew Section */
.cast-crew {
    padding: 4rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
}

.cast-crew h2 {
    font-size: 2.5rem;
    font-style: italic;
    color: #dc2626;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cast-crew h3 {
    font-size: 2rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Director Section */
.director-section {
    margin-bottom: 4rem;
}

.director-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.director-card .headshot {
    flex-shrink: 0;
}

.director-card .headshot img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dc2626;
    filter: grayscale(100%);
}

.director-card .info h4 {
    font-size: 1.8rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.director-card .info .role {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-style: italic;
}

.director-card .info .bio {
    font-size: 1rem;
    line-height: 1.6;
}

/* Cast Grid */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cast-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cast-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.cast-member .headshot {
    margin-bottom: 1rem;
}

.cast-member .headshot img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dc2626;
    filter: grayscale(100%);
}

.cast-member .info h4 {
    font-size: 1.3rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.cast-member .info .character {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 600;
}

.cast-member .info .bio {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

/* Crew Section */
.crew-section {
    margin-top: 4rem;
}

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

.crew-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.crew-member:hover {
    transform: translateY(-3px);
}

.crew-member h4 {
    font-size: 1.2rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.crew-member p {
    font-size: 1rem;
    color: #fff;
    font-style: italic;
}

/* Footer */
footer {
    background: #000;
    padding: 2rem 0;
    border-top: 1px solid #dc2626;
}

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

.school-info h3 {
    font-size: 1.3rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.school-info p {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.school-info a {
    color: #dc2626;
    text-decoration: none;
}

.school-info a:hover {
    text-decoration: underline;
}

.production-info p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .play-title {
        font-size: 2.5rem;
    }
    
    .show-info {
        bottom: 1.5rem;
        right: 1rem;
    }
    
    .show-dates {
        gap: 0.8rem;
    }
    
    .show-date {
        padding: 0.8rem 1.2rem;
    }
    
    .day-name {
        font-size: 1.1rem;
    }
    
    .date-number {
        font-size: 1.1rem;
    }
    
    .show-time {
        font-size: 1.2rem;
    }
    
    
    .director-card {
        flex-direction: column;
        text-align: center;
    }
    
    .director-card .headshot img {
        width: 150px;
        height: 150px;
    }
    
    .cast-grid {
        grid-template-columns: 1fr;
    }
    
    .crew-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .production-info p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
    
    .play-title {
        font-size: 2rem;
    }
    
    .author {
        font-size: 1.3rem;
    }
    
    .show-info {
        bottom: 1rem;
        right: 0.5rem;
    }
    
    .show-dates {
        gap: 0.6rem;
    }
    
    .show-date {
        padding: 0.6rem 1rem;
    }
    
    .day-name {
        font-size: 1rem;
    }
    
    .date-number {
        font-size: 1rem;
    }
    
    .show-time {
        font-size: 1.1rem;
    }
    
    .about h2,
    .cast-crew h2 {
        font-size: 2rem;
    }
    
    .cast-member .headshot img {
        width: 120px;
        height: 120px;
    }
    
    .director-card .headshot img {
        width: 120px;
        height: 120px;
    }
}
