/* Genel container düzeni */
.about-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.about-us .section-title {
    font-size: 42px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 1s ease, transform 1s ease;
}
.about-us .section-title.show {
    opacity: 1;
    transform: translateY(0); 
}
.about-us .intro-text {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #666;
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 2s ease, transform 2s ease;
}
.about-us .intro-text.show {
    opacity: 1;
    transform: translateY(0); 
}

/* Detaylar bölümü */
.about-us .about-details {

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 100px;
}

/* Metin alanı stili */
.about-us .about-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 2s ease, transform 2s ease;
}

.about-us .about-text.show {
    opacity: 1;
    transform: translateY(0); 
}

.about-us .about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

/* Resimler alanı */
.about-us .about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateX(100px); 
    transition: opacity 3s ease, transform 3s ease;
}

.about-us .about-images.show {
    opacity: 1;
    transform: translateX(0); 
}

.about-us .about-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Konum bölümü */
.about-us .about-location {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 2s ease, transform 2s ease;
}
.about-location.show {
    opacity: 1;
    transform: translateY(0); 
}

.about-us .about-location h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.about-us .about-location p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.about-images-2 {
    max-width: 1200px;  
    margin: 0 auto;
    padding: 20px;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 2s ease, transform 2s ease;
}

.about-images-2.show {
    opacity: 1;
    transform: translateY(0); 
}
.about-images-2 img {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-us .about-details {
        flex-direction: column;
        gap: 20px;
    }

    .about-us .about-text h3 {
        font-size: 24px;
    }

    .about-us .about-text p {
        font-size: 16px;
    }

    .about-us .about-images img {
        width: 100%;
    }

    .about-us .intro-text {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .about-us .section-title {
        font-size: 36px;
    }
    
    .about-us .about-location h3 {
        font-size: 24px;
    }

    .about-us .about-location p {
        font-size: 16px;
    }

    .about-images-2 img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .about-us .section-title {
        font-size: 30px;
    }

    .about-us .intro-text {
        font-size: 20px;
    }

    .about-us .about-text h3 {
        font-size: 22px;
    }

    .about-us .about-text p {
        font-size: 14px;
    }

    .about-us .about-images img {
        width: 100%;
    }

    .about-us .about-location h3 {
        font-size: 22px;
    }

    .about-us .about-location p {
        font-size: 14px;
    }

    .about-images-2 img {
        height: 300px;
    }
}
.line {
    width: 100px;
    height: 4px;
    background-color: #ff0000;
    margin: 0 auto 20px;
} 
