/* Font import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Genel font ayarları */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Başlık stilleri */
.display-4 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* İçerik stilleri */
.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Resim container stilleri */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 500px;
    margin-bottom: 1rem;
}

/* İlk fotoğraf için özel stil */
.col-6:first-child .image-container {
    transform: translateX(30px); /* Sağa kaydır */
    z-index: 2; /* Başlangıçta üstte */
}

/* İkinci fotoğraf için özel stil */
.col-6:last-child .image-container {
    transform: translateX(-30px); /* Sola kaydır */
    margin-top: 30px; /* Biraz aşağı kaydır */
    z-index: 1;
}

/* Hover efektleri */
.image-container:hover {
    transform: scale(1.05) translateX(0) !important; /* !important ile diğer transform değerlerini eziyoruz */
    z-index: 3 !important; /* En üstte göster */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hover efekti için overlay */
.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover::after {
    opacity: 1;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .about-content {
        font-size: 1rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .image-container {
        height: 300px;
    }
    
    .col-6:first-child .image-container,
    .col-6:last-child .image-container {
        transform: none; /* Mobilde kaydırma efektini kaldır */
        margin-top: 0;
    }
    
    .col-6 {
        padding: 5px;
    }
} 