:root {
  --background-color: #e8e8e8; /* Slightly darker background */
  --text-color: #333333; /* Darker text for contrast */
  --primary-color: #e74c3c; 
  --container-width: 1100px;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Site Header --- */
.site-header {
    background-color: #ffffff; /* Lighter header */
    border-bottom: 1px solid #eee; /* Lighter border */
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Subtle shadow */
}

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

.site-logo img {
    max-height: 50px;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--text-color); /* Use text-color for links */
    text-transform: uppercase;
    font-weight: 700;
    padding: 1rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.social-media {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-media img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.social-media a:hover img {
    transform: scale(1.1);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff; /* Lighter dropdown */
    border: 1px solid #eee; /* Lighter border */
    border-top: none;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 220px;
    z-index: 101;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1); /* Subtle shadow */
}

.has-dropdown:hover .dropdown {
    display: block !important;
}

.dropdown li a {
    display: block;
    padding: 0.75rem 1rem;
    white-space: nowrap;
    border-bottom: none;
}

.dropdown li a:hover {
    background-color: var(--primary-color);
    color: #ffffff; /* White text on hover */
    border-bottom: none;
}


/* Footer için temel stiller */
.site-footer {
  background-color: #ffffff; /* Lighter footer */
  border-top: 1px solid #eee; /* Lighter border */
  padding: 2rem 0;
  text-align: center;
  font-size: 0.81em;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.05); /* Subtle shadow */
}

.site-footer__content {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.site-footer__links a {
    margin: 0 10px;
}

.site-footer__copyright {
    margin-top: 1rem;
    color: #888; /* Keep a slightly darker grey for copyright */
}

/* --- Homepage Specific Styles --- */

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 3.15rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.hero__subtitle {
    font-size: 1.35rem;
    margin: 0 0 2rem 0;
    font-weight: 300;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Add box-shadow transition */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow */
}

.button:hover {
    background-color: #C0901A; /* Slightly darker shade of primary on hover */
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* More pronounced shadow on hover */
}

/* Home Sections */
.home-section {
    padding: 2rem 0;
    border-bottom: 1px solid #eee; /* Lighter border */
}

.home-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 3rem auto;
    padding-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Play Grid */
.play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.play-card {
    background-color: #ffffff; /* Lighter card background */
    border-radius: 8px; /* Slightly more rounded corners */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); /* Softer, more spread out shadow */
}

.play-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15); /* More pronounced shadow on hover */
}

.play-card a {
    display: block;
    color: var(--text-color);
}

.play-card a:hover {
    text-decoration: none;
}

.play-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-card__info {
    padding: 1.5rem;
}

.play-card__title {
    margin: 0 0 0.5rem 0;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.play-card__date {
    margin: 0;
    font-weight: 300;
    color: #666; /* Softer date color */
}

/* Awards List */
.awards-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #ffffff; /* Lighter background */
    padding: 1rem;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Subtle shadow */
}

.award-item img {
    max-width: 60px;
    flex-shrink: 0;
}

.more-link {
    text-align: center;
    margin-top: 2rem;
}

/* Video Section */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Archive Promo */
#archive-promo {
    text-align: center;
    background-color: #ffffff; /* Lighter background */
    padding: 3rem;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); /* Subtle shadow */
}

/* --- Single Play Page Styles --- */

.play-page {
    padding: 1rem 0;
}

.play-header {
    text-align: left;
    padding: 0;
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.play-title {
    font-size: 2.7rem;
    color: var(--primary-color);
    margin: 0;
}

.play-layout {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: single column */
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .play-layout {
        grid-template-columns: 2fr 1fr; /* Two columns on larger screens */
    }
}

.play-main-content {
    /* Main content styles */
}

.play-sidebar {
    /* Sidebar styles */
}

.section-title--play {
    font-size: 1.62rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 1px solid #eee; /* Lighter border */
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.play-sidebar .play-poster {
    margin-bottom: 2rem;
    border: 4px solid #eee; /* Lighter border */
}

.play-crew-box {
    background-color: #ffffff; /* Lighter background */
    padding: 1.5rem;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Subtle shadow */
}

.sidebar-title {
    font-size: 1.5rem;
    margin-top: 0;
    color: var(--primary-color);
}

.crew-list {
    margin: 0;
    padding: 0;
}

.crew-list dt {
    font-weight: 700;
    margin-top: 1rem;
    color: #555; /* Softer color */
}

.crew-list dd {
    margin-left: 0;
    padding-left: 1rem;
    border-left: 2px solid var(--primary-color);
    font-style: italic;
}

.rights-notice {
    font-size: 0.8em;
    color: #888;
    margin-top: 1.5rem;
    border-top: 1px solid #eee; /* Lighter border */
    padding-top: 1rem;
}

/* Play Gallery Grid */
.play-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.play-gallery-grid a {
    display: block;
    border: 2px solid #eee; /* Lighter border */
    transition: border-color 0.3s ease;
}

.play-gallery-grid a:hover {
    border-color: var(--primary-color);
}

#comments {
    margin-top: 2rem;
}

/* Reviews List */
.reviews-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reviews-list li {
    padding: 0.75rem 1.5rem;
    border-left: 3px solid var(--primary-color);
    background-color: #ffffff; /* Lighter background */
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Subtle shadow */
}

.reviews-list li:hover {
    background-color: #f5f5f5; /* Slightly darker on hover */
}

.reviews-list a {
    color: var(--text-color);
    font-weight: 700;
}

/* --- Topnav Dropdown --- */
#topnav ul li {
    position: relative;
}

#topnav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff; /* Lighter dropdown */
    border: 1px solid #eee; /* Lighter border */
    border-top: none;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 220px;
    z-index: 101;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1); /* Subtle shadow */
}

#topnav ul li:hover > ul {
    display: block;
}

#topnav ul ul li {
    display: block;
    float: none;
}

#topnav ul ul li a {
    display: block;
    padding: 0.75rem 1rem;
    white-space: nowrap;
    border-bottom: none;
}

#topnav ul ul li a:hover {
    background-color: var(--primary-color);
    color: #ffffff; /* White text on hover */
    border-bottom: none;
}

/* --- Mobile Menu --- */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
}

.hamburger-line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    margin: 6px 0;
    transition: 0.4s;
}

@media screen and (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: #ffffff; /* Lighter background */
        border-top: 1px solid #eee; /* Lighter border */
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li {
        border-bottom: 1px solid #eee; /* Lighter border */
    }

    .main-nav ul li a {
        padding: 1rem;
        display: block;
    }

    .has-dropdown .dropdown {
        display: none !important; /* Hide dropdown by default */
        position: static;
        background-color: #f5f5f5; /* Lighter background */
        border: none;
        width: 100%;
    }

    .has-dropdown.is-open .dropdown {
        display: block !important; /* Show on click */
    }

    .hamburger-button {
        display: block;
    }

    .social-media {
        display: none; /* Optionally hide social media on mobile */
    }
}

/* --- About Page --- */
.page-content {
    padding: 1rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-title {
    display: none; /* Hidden by default */
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 2rem auto;
    padding-bottom: 0.8rem;
    color: var(--text-color);
    position: relative;
    width: 100%;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .page-title {
        display: block;
    }
}

.page-header h2 {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    color: #666; /* Softer color */
    margin: 0;
}

.about-text {
    line-height: 1.8;
    font-size: 0.99rem;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: justify;
}

/* --- Timeline --- */
.timeline-section {
    margin-bottom: 4rem;
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item-left {
    left: 0;
    padding-right: 60px;
    text-align: right;
}

.timeline-item-right {
    left: 50%;
    padding-left: 60px;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--background-color);
    border: 4px solid var(--primary-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item-left::after {
    right: -12px;
}

.timeline-item-right::after {
    left: -12px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content {
    padding: 20px;
    background-color: #ffffff; /* Lighter background */
    position: relative;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Subtle shadow */
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

@media screen and (max-width: 600px) {
    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
    }

    .timeline-item-left,
    .timeline-item-right {
        left: 0;
        text-align: left;
        padding-right: 15px; /* Reset padding for mobile */
    }

    .timeline-item-left::after,
    .timeline-item-right::after {
        left: 10px;
    }
}

/* --- Contact Page --- */
.contact-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 700px; /* Adjusted max-width */
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #ffffff; /* Lighter input background */
    border: 1px solid #ddd; /* Lighter border */
    color: var(--text-color);
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05); /* Subtle inner shadow */
}

.success-message {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.error-message {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust as needed */
    overflow: hidden;
}

.slides-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.hero__title {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero__subtitle {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.button--primary {
    background-color: #e74c3c; /* Example color, adjust to theme */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.button--details {
    margin-right: 15px; /* Add horizontal distance */
}

/* Navigation Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    z-index: 3;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Dots */
.dots-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #717171;
}
/* Program Page Event List */
.event-list-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Space between event rows */
    padding: 1rem 0;
}

.event-row {
    display: flex;
    align-items: center;
    background-color: #ffffff; /* Lighter background */
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Softer shadow */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.event-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* More pronounced shadow on hover */
}

.event-poster-small {
    flex-shrink: 0; /* Prevent shrinking */
    width: 80px; /* Small fixed width for the poster */
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
    margin-right: 1rem;
}

.event-poster-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-info {
    flex-grow: 1; /* Allows info to take up available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date-time {
    font-size: 0.9em;
    color: #666; /* Softer color */
    margin-bottom: 0.25rem;
}

.event-date {
    font-weight: bold;
    margin-right: 0.5rem;
}

.event-time {
    font-style: italic;
}

.event-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.event-location {
    font-size: 0.9em;
    color: #666; /* Softer color */
    margin: 0;
}

.event-ticket {
    flex-shrink: 0; /* Prevent shrinking */
    margin-left: 1.5rem;
}

.event-ticket .button {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .event-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-poster-small {
        width: 100px;
        height: 100px;
        margin: 0 auto 1rem auto; /* Center poster and add space below */
    }

    .event-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
    }

    .event-ticket {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    
}