:root {
    --bg-color: #060606;
    --text-main: #f0f0f0;
    --text-muted: #888888;
    --accent: #ffffff;
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
}

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

html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%; /* iOS Chrome/Safari'nin küçük fontları otomatik büyütmesini engeller */
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    font-size: 13px;
    letter-spacing: 2px;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 6px;
    color: #ffffff;
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-left: 5vw;
}

.nav-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.lang {
    color: var(--text-muted);
}
.lang a {
    transition: color 0.3s;
}
.lang a:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    /* Moody background image matching the reference */
    background: linear-gradient(to right, rgba(6,6,6,0.9) 0%, rgba(6,6,6,0.4) 50%, rgba(6,6,6,0.8) 100%), url('banner.png') center/cover;
    padding: 0 10vw;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    pointer-events: none;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 10;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-text p {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 28px;
    position: relative;
    padding-left: 60px;
    line-height: 1.4;
}

.hero-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--text-muted);
}

.btn-play {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-play:hover {
    border-color: #fff;
    color: #fff;
}

.btn-play .arrow {
    font-size: 9px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.btn-play:hover .arrow {
    color: #fff;
}

/* Laurels */
.festivals {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.laurel {
    position: relative;
    width: 160px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laurel-img {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: invert(1) opacity(0.6);
}

.laurel-text {
    font-size: 8.5px;
    letter-spacing: 1.5px;
    line-height: 1.6;
    color: #dddddd;
    z-index: 1;
    text-transform: uppercase;
}
.laurel-text strong {
    font-weight: 500;
    color: #ffffff;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    left: 5vw;
    bottom: 80px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
    z-index: 10;
}

.scroll-indicator .line {
    width: 60px;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
}

/* Movie Section */
.movie-section {
    padding: 80px 10vw 120px;
    background-color: var(--bg-color);
}

.movie-card {
    display: flex;
    gap: 4vw;
    align-items: flex-start;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 80px;
}

.movie-poster {
    flex: 0 0 260px;
    position: relative;
    aspect-ratio: 4 / 5;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.poster-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 4rem;
    letter-spacing: 15px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    pointer-events: none;
}

.movie-info {
    flex: 1;
}

.pre-title {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.movie-info h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 4px;
    white-space: normal;
}

.movie-info .meta {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 35px;
    text-transform: uppercase;
}

.movie-info p {
    font-size: 1rem;
    color: #bbbbbb;
    margin-bottom: 20px;
    max-width: 450px;
    line-height: 1.8;
}

#movie-desc {
    margin-bottom: 30px;
}

.cast-container {
    margin-bottom: 30px;
}

.cast-container h3 {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.crew-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.crew-role {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.crew-name {
    color: #dddddd;
    font-family: var(--font-serif);
}

.movie-links {
    display: flex;
    gap: 40px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.movie-links a {
    color: var(--text-muted);
    padding-bottom: 8px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.movie-links a.active {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.4);
}

.movie-links a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.movie-video {
    flex: 1;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    align-self: center;
}

.movie-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.movie-video:hover img {
    opacity: 0.9;
    transform: scale(1.02);
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding-left: 5px; /* visually center the triangle */
}

.movie-video:hover .play-btn-circle {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Quotes */
.quotes {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.quote {
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 30px;
}

.quote p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: #dddddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote .author {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10vw 40px;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.social-links a {
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

@media (max-width: 1400px) {
    .movie-card {
        flex-wrap: wrap;
    }
    .movie-video {
        flex: 1 1 100%;
        margin-top: 40px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 10vw 100px;
    background-color: var(--bg-color);
    min-height: calc(100vh - 180px);
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 60px;
    letter-spacing: 5px;
    text-align: center;
    color: #fff;
}

.contact-container {
    display: flex;
    gap: 6vw;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    color: #cccccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    white-space: normal;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-details a {
    color: #ffffff;
    transition: color 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 2px;
}

.contact-details a:hover {
    color: var(--text-muted);
    border-bottom-color: transparent;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-map {
        min-height: 300px;
    }
}

@media (max-width: 900px) {
    .hero-text h1 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }
    .hero-text p {
        font-size: 0.75rem;
        padding-left: 30px;
        margin-bottom: 15px;
    }
    .hero-text p::before {
        width: 20px;
    }
    .navbar {
        flex-direction: column;
        gap: 15px;
        position: fixed;
        top: 0;
        background-color: var(--bg-color);
        padding: 15px 5vw;
        z-index: 1000;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-links {
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .movie-poster {
        flex: 1 1 100%;
    }
    .movie-info h2 {
        font-size: 2rem;
    }
    .movie-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-title, .about-title {
        font-size: 1.8rem; /* Uzun başlıkların mobilde ekranı taşırmasını engeller */
        letter-spacing: 2px;
        white-space: nowrap;
    }
    .quotes {
        flex-direction: column;
        gap: 40px;
    }
    .footer {
        flex-direction: column;
        gap: 20px;
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .social-links {
        gap: 15px;
        flex-wrap: wrap;
        font-size: 10px;
        letter-spacing: 1px;
        width: 100%;
        justify-content: center;
    }
    .social-links li {
        white-space: nowrap;
    }
}

/* About Section */
.about-section {
    padding: 100px 10vw;
    background-color: var(--bg-color);
    min-height: calc(100vh - 180px);
}

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

.about-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: 5px;
    text-align: center;
    color: #fff;
}

.about-content {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 25px;
}

.about-signature {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: #ffffff;
    margin-top: 60px;
    text-align: right;
}
