/*
 * Parallax Vaziyet Section Styles
 * MEK Ajans Yazılım ve San. Ltd. Şti. tarafından yapılmıştır
 */

.vaziyet-parallax {
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/vaziyet.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vaziyet-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1;
}

.vaziyet-parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/VA_Overlay.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.vaziyet-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 100%;
    padding: 2rem 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.vaziyet-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    filter: blur(20px);
    opacity: 0.3;
    transform: scale(1.2);
    transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    will-change: filter, transform, opacity;
    position: relative;
    padding: 0.2em 0;
    overflow: visible;
}

.vaziyet-description {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    line-height: 1.4;
    margin-bottom: 2rem;
    filter: blur(15px);
    opacity: 0;
    transform: translateY(50px) scale(1.1);
    transition: all 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
    max-width: 900px;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    will-change: filter, transform, opacity;
}

/* Scroll efekti için focused class */
.vaziyet-content.focused .vaziyet-title {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1);
}

.vaziyet-content.focused .vaziyet-description {
    filter: blur(0px);
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Parallax scroll efekti */
.vaziyet-parallax .vaziyet-content {
    will-change: transform;
}

/* Cinematic reveal effect - basitleştirildi */

/* Subtle floating animation */
.vaziyet-content.focused .vaziyet-title {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: scale(1) translateY(0px); }
    50% { transform: scale(1) translateY(-10px); }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .vaziyet-parallax {
        background-attachment: scroll;
        height: 70vh;
        min-height: 500px;
    }

    .vaziyet-title {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        filter: blur(10px);
    }

    .vaziyet-description {
        font-size: clamp(0.9rem, 3vw, 1.2rem) !important;
        filter: blur(8px);
    }

    .vaziyet-content.focused .vaziyet-title,
    .vaziyet-content.focused .vaziyet-description {
        filter: blur(0px);
    }
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .vaziyet-parallax {
        background-attachment: scroll;
    }

    .vaziyet-title {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .vaziyet-title {
        text-rendering: optimizeLegibility;
    }
}