/* ============================================
   AI PRODUCTION PAGE - COMPLETE
   ============================================ */

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

:root {
    --blue: #4A90D9;
    --navy: #1a2747;
    --white: #FFFFFF;
    --black: #0a0a0a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--black);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

section {
    margin: 0;
    padding: 0;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-decoration: none;
}

.header-logo img {
    height: 36px;
    width: auto;
}

.header-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.6;
}
/* HERO VIDEO */
.hero-video {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.vimeo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Videonun ekranı esnemeden tam kaplamasını sağlar */
    pointer-events: none;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* WATCH BUTTON */
.watch-section {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.watch-btn:hover {
    background: var(--white);
    color: var(--black);
}

.watch-btn .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.watch-btn:hover .arrow {
    transform: translateX(6px);
}

/* VIDEO MODAL */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 50px;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-content {
    width: 90%;
    max-width: 1400px;
    aspect-ratio: 16/9;
}

.modal-content iframe,
.modal-content video {
    width: 100%;
    height: 100%;
    outline: none; /* Videoya tıklandığında etrafında çıkan siyah/mavi çerçeveyi kaldırır */
    border-radius: 8px; /* İsteğe bağlı: Videonun köşelerini hafif yumuşatır, daha şık durur */
}

/* ABOUT SECTION */
.about-section {
    padding: 120px 80px;
    background: var(--black);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 600;
    background: linear-gradient(135deg, #64B5F6 0%, #90CAF9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    margin-top: 60px;
    text-align: left;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-align: left;
    position: relative;
    padding: 35px 40px 35px 50px;
    border-radius: 0;
    background: rgba(74, 144, 217, 0.04);
    border: none;
    border-left: 4px solid transparent;
    border-image: linear-gradient(135deg, rgba(74, 144, 217, 0.8) 0%, rgba(74, 144, 217, 0.2) 100%) 1;
    box-shadow: 
        0 0 30px rgba(74, 144, 217, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    animation: fadeInUp 0.9s ease-out both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.about-content p:nth-child(2) {
    animation-delay: 0.1s;
}

.about-content p:nth-child(3) {
    animation-delay: 0.2s;
}

.about-content p:nth-child(4) {
    animation-delay: 0.3s;
}

.about-content p:hover {
    background: rgba(74, 144, 217, 0.08);
    border-left-color: rgba(74, 144, 217, 1);
    box-shadow: 
        0 0 50px rgba(74, 144, 217, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

/* DIRECTORS */
.directors-section {
    padding: 120px 80px;
    background: #111;
}

.directors-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 80px;
}

.directors-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.director-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.director-card:hover {
    transform: translateY(-10px);
}

.director-photo {
    width: 200px;
    height: 250px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.director-card:hover .director-photo img {
    transform: scale(1.05);
}

.director-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.director-card:hover .director-info h3 {
    color: var(--blue);
}

.director-info p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* LOGO SECTION */
.logo-section {
    padding: 100px 80px;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    max-width: 800px;
    width: 100%;
}

.logo-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* FOOTER */
.footer {
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--black);
}

.back-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.back-btn:hover {
    opacity: 0.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-4px);
}

.contact-btn .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-btn:hover .arrow {
    transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 80px;
    }
    
    .directors-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-content {
    margin: 0 ;  
}

.about-content h2 {
    text-align: left;; 
}

.about-content p {
    text-align: left; 
}

@media (max-width: 768px) {
    .header {
        padding: 20px 24px;
    }
    
    .hero-video {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 60px;
    }

    .watch-section {
        bottom: 40px;
    }

    .watch-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
    
    .about-section,
    .directors-section {
        padding: 80px 40px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .about-content p {
        font-size: 16px;
    }
    
    .director-card {
        flex-direction: column;
    }
    
    .director-photo {
        width: 100%;
        height: 300px;
    }
    
    .logo-section {
        padding: 60px 40px;
    }
    
    .logo-container {
        max-width: 500px;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .modal-content {
        width: 95%;
    }
}