/* ============================================
   DIRECTOR BIO MODAL - Martin Werner Style
   ============================================ */

/* Bio Tag Styling */
.bio-tag {
    cursor: pointer;
    transition: all 0.3s ease;
}

.bio-tag:hover {
    opacity: 0.7;
}

/* Bio Modal Container */
.bio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.bio-modal.active {
    display: block;
}

/* Dark Overlay */
.bio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

/* Bio Content Container - SOLDA FOTO, SAĞDA YAZI */
.bio-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row !important; /* KESIN SOLDA FOTO */
    gap: 40px;
    max-width: 1100px;
    width: 90%;
    z-index: 100000;
}

/* Close Button - Top Right */
.bio-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 100001;
    transition: transform 0.3s ease;
    line-height: 1;
}

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

/* Director Photo - Left Side with Orange Border */
.bio-photo {
    width: 380px;
    height: 380px;
    flex-shrink: 0;
    border: 5px solid #F5A623;
    padding: 10px;
    background: #000;
}

.bio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bio Text - Right Side */
.bio-text {
    margin-top: 80;
    flex: 1;
    color: white;
    padding: 0; /* PADDING KALDIR */
}

/* Director Name - Large Background Text + Small "bio" */
.director-name-large {
    position: relative;
    margin-bottom: 25px; /* 40px → 25px */
}

.name-background {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 0.9;
    text-transform: lowercase;
    margin-bottom: 10px; /* 20px → 10px */
}

.name-front {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: white;
    text-transform: lowercase;
    margin-bottom: 10px;
}

.bio-label {
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-transform: lowercase;
}

/* Bio Paragraphs */
.bio-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

/* Responsive - SADECE ÇOK KÜÇÜK EKRANLARDA */
@media (max-width: 900px) {
    .bio-container {
        flex-direction: column !important;
        max-width: 600px;
    }
    
    .bio-photo {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .name-background {
        font-size: 80px;
    }
    
    .name-front {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .bio-photo {
        width: 250px;
        height: 250px;
    }
    
    .name-background {
        font-size: 60px;
    }
    
    .name-front {
        font-size: 28px;
    }
    
    .bio-text p {
        font-size: 14px;
    }
}