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

body {
   /* font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #EBE5D9;
    color: #000; */
    overflow-x: hidden; /* Important for ScrollSmoother? Actually ScrollSmoother usually handles this, but good to keep */
}

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

ul {
    list-style: none;
}

/* Header / Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #000; /* Always Black */
    color: #fff; /* Always White */
    transition: background-color 0.3s ease, color 0.3s ease;
}

header nav {
    display: flex;
    width: 100%;
    justify-content: space-between; /* Equal spacing */
}

header nav div {
    flex: 1;
    text-align: center;
}

/* Reset button styles to look like links */
header nav div button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: #fff; /* White by default */
    padding: 0;
    transition: color 0.3s ease;
}

header nav div button:hover {
    color: #999; /* Gray on hover */
}

/* TR Button Specifics */
#TrBtn {
    color: #ff6600; /* Orange */
}

#TrBtn:hover {
    color: #fff; /* White on hover */
}

/* Mobile Menu Trigger (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 40px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Anton', 'Impact', sans-serif; /* Larger impact font */
    font-size: 40px; /* Large size */
    color: #fff;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav button:hover {
    color: #999;
}

#MobileTrBtn {
    color: #ff6600;
}

#MobileTrBtn:hover {
    color: #fff;
}

header nav div:first-child { text-align: left; }
header nav div:last-child { text-align: right; }

/* Hero Section */
/* Note: hero-title is moved to body level in HTML, styles kept here */
.hero-title {
    position: fixed;
    top: 120px; /* Adjust based on nav height */
    left: 50%;
    transform: translateX(-50%);
    font-size: 20vw; /* Very large */
    line-height: 0.8;
    font-family: 'Anton', 'Impact', sans-serif;
    text-transform: uppercase;
    z-index: -1; /* Behind everything by default */
    pointer-events: none;
    white-space: nowrap;
}

.hero-image-container {
    position: relative;
    z-index: 11; /* Above text */
    /* margin-top handled by wrapper padding */
    width: 600px;
    height: 900px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Wrapper to cover fixed hero title as we scroll */
.content-wrapper {
    position: relative;
    z-index: 10;
    background-color: #EBE5D9;
    padding-bottom: 100px;
    margin-top: -300px; /* Pull content up to overlap hero image bottom part */
    padding-top: 550px; /* Increased padding to push content further down */
}

/* Film & TV Section */
.film-tv-section {
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    min-height: 80vh;
}

.section-title {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 80px;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 0.9;
}

.film-item {
    border-bottom: 1px solid #000;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.film-item h3 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    /* Ensure links inside inherit style */
}
.film-item h3 a {
    text-decoration: none;
    color: inherit;
}


.film-item::before {
    content: '•';
    margin-right: 10px;
    font-size: 20px;
}

.film-item:hover {
    opacity: 0.7;
}

/* NEWS Section */
.news-section {
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    min-height: 80vh;
}

.news-section-title {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 80px;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 0.9;
}

.news-item {
    border-bottom: 1px solid #000;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.news-item h3 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    /* Ensure links inside inherit style */
}
.news-item h3 a {
    text-decoration: none;
    color: inherit;
}


.news-item::before {
    content: '•';
    margin-right: 10px;
    font-size: 20px;
}

.news-item:hover {
    opacity: 0.7;
}


/* CONTACT Section */
.contact-section {
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    min-height: 80vh;
}

.contact-section-title {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 80px;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 0.9;
}

.contact-item {
    border-bottom: 1px solid #000;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.contact-item h3 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    /* Ensure links inside inherit style */
}
.contact-item h3 a {
    text-decoration: none;
    color: inherit;
}


.contact-item::before {
    content: '•';
    margin-right: 10px;
    font-size: 20px;
}

.contact-item:hover {
    opacity: 0.7;
}




/* Info Tag Style */
.info-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 0.6em; /* Adjust relative to h3 size */
    vertical-align: middle;
    margin-left: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.film-preview {
    width: 50%;
    position: relative;
}

.preview-image {
    position: sticky;
    top: 100px;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #ccc; /* Placeholder color */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-image.active {
    display: block;
    opacity: 1;
}

/* showreel Section */
.showreel-section {
    padding: 60px 40px;
}

.showreel-hero-image {
    width: 100%;
    height: 92vh;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 60px;
}

.showreel-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* about Section */
.about-section {
    padding: 60px 40px;
}

.about-hero-image {
    width: 100%;
    height: 90vh;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 60px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 40px;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 200px;
    width: 200px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none; /* Let clicks pass through to slider if needed */
}

.slider-btn {
    pointer-events: auto;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: #666;
}

/* Footer / Newsletter */
.about-section {
    text-align: center;
    padding: 100px 40px 40px;
    background-color: #EBE5D9;
}

.big-footer-title {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 15vw;
    text-transform: uppercase;
    line-height: 0.8;
    margin-bottom: 40px;
}

.about-text {
    max-width: 100%;
    margin: 0 auto 60px;
    text-align: left;
    columns: 2;
    column-gap: 40px;
    font-size: 1.2VW;
    line-height: 1.5;
}

.newsletter {
    max-width: 400px;
    margin: 0 auto 40px;
}

.newsletter p {
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    background: #222;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

.copyright {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    text-transform: uppercase;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 40px;
}



/* 
  ##Cihaz = Masaüstü
  ##Ekran = 2280px 'den yüksek çözünürlükler için
*/

@media (min-width: 2280px) {
  
  
  .hero-image-container {
      position: relative;
      z-index: 11; /* Above text */
      /* margin-top handled by wrapper padding */
      width: 1100px;
      height: 1377px;
      border-radius: 40px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .hero-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
.film-tv-section {
      padding: 60px 40px;
      display: flex;
      justify-content: space-between;
      min-height: 70vh;
  }
  
  
  .content-wrapper {
      position: relative;
      z-index: 10;
      background-color: #EBE5D9;
      padding-bottom: 100px;
      margin-top: -300px; /* Pull content up to overlap hero image bottom part */
      padding-top: 250px; /* Increased padding to push content further down */
  }
  
}


/* 
  ##Cihaz = Masaüstü
  ##Ekran = 1920px 'den yüksek çözünürlükler için
*/

@media (min-width: 1920px) {
  
  .content-wrapper {
      position: relative;
      z-index: 10;
      background-color: #EBE5D9;
      padding-bottom: 100px;
      margin-top: -300px; /* Pull content up to overlap hero image bottom part */
      padding-top: 250px; /* Increased padding to push content further down */
  }
  
}



/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    
    /* Header */
    header {
        padding: 30px 20px;
    }
    
    .desktop-nav {
        display: none; /* Hide desktop nav on mobile */
    }

    .mobile-menu-btn {
        display: block; /* Show mobile menu trigger */
        position: absolute;
        right: 20px;
        top: 20px; /* Adjust alignment */
    }

    /* Hero */
    .hero-title {
        font-size: 18vw;
        top: 150px;
        z-index: 3; /* Bring text above image in mobile */
    }

    .hero-image-container {
        width: 90%;
        height: 60vh;
        border-radius: 20px;
        margin-top: 0vh; /* Increase space between text and image */
        z-index: 11; /* Keep image behind text */
    }
    
    /* Content Wrapper to cover fixed hero title as we scroll */
    .content-wrapper {
        position: relative;
        z-index: 10;
        background-color: #EBE5D9;
        padding-bottom: 100px;
        margin-top: -300px; /* Pull content up to overlap hero image bottom part */
        padding-top: 120px; /* Increased padding to push content further down */
    }

    /* Film & TV Section - Mobile Fixes */
    .film-tv-section {
        flex-direction: column;
        padding: 20px 20px; /* Reduce top padding */
        padding-top: 0; /* Remove top padding to reduce gap */
    }

    .film-list {
        width: 100%;
    }
    .news-list {
        width: 100%;
    }

    /* Hide preview image on mobile as requested */
    .film-preview {
        display: none; 
    }

    .section-title {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .film-item h3 {
        font-size: 18px;
    }

    /* Press Section */
    .press-section {
        padding: 40px 20px;
    }

    .press-hero-image {
        height: 40vh;
        border-radius: 20px;
    }

    /* Footer / About Section - Mobile Fixes */
    .big-footer-title {
        font-size: 20vw;
    }

    .about-text {
        columns: 1; /* Force single column on mobile */
        font-size: 14px; /* Increase font size for readability */
        padding: 0 10px;
    }

    .newsletter {
        padding: 0 20px;
    }
}
