/* Anlatı Alanı Bölümü */
.anlati-alani-section {
    padding: 80px 20px;
    background: #F8FAFC;
}

.anlati-alani-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.anlati-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.anlati-baslik {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.baslik-satir-1 {
    font-size: 36px;
    font-weight: 700;
    color: #3B82F6;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.baslik-satir-2 {
    font-size: 36px;
    font-weight: 700;
    color: #3B82F6;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.anlati-ara-baslik {
    font-size: 24px;
    color: #3B82F6;
    font-weight: 600;
    margin-bottom: 15px;
}

.anlati-aciklama {
    font-size: 16px;
    line-height: 1.8;
    color: #0F172A;
}

.anlati-aciklama p {
    margin-bottom: 15px;
}

.anlati-imza {
    margin-top: 20px;
}

.anlati-imza img {
    max-width: 200px;
    height: auto;
}

.anlati-gorsel {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.anlati-gorsel img {
    height: auto;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.gorsel-1 {
    position: relative;
    width: 100%;
    z-index: 1;
    animation: float1 3s ease-in-out infinite;
}

.gorsel-2 {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 50%;
    z-index: 2;
    animation: float2 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.anlati-gorsel .gorsel-1:hover {
    filter: blur(0);
    transform: scale(1.02);
    z-index: 3;
}

.anlati-gorsel .gorsel-1:hover ~ .gorsel-2 {
    filter: blur(3px);
}

.anlati-gorsel .gorsel-2:hover {
    filter: blur(0);
    transform: scale(1.02);
    z-index: 3;
}

.anlati-gorsel:has(.gorsel-2:hover) .gorsel-1 {
    filter: blur(3px);
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .anlati-alani-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .anlati-gorsel {
        order: -1;
    }
    
    .baslik-satir-1 {
        font-size: 28px;
    }
    
    .baslik-satir-2 {
        font-size: 24px;
    }
}

