/* 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 */
.mission-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    border-left: 4px solid #2c3e50;
    padding-left: 1rem;
}

/* Misyon maddeleri stilleri */
.mission-point h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mission-point p {
    color: #666;
    padding-left: 2rem;
}

.mission-point {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
}

.mission-point:hover {
    background-color: #f8f9fa;
    transform: translateX(10px);
}

/* 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);
    z-index: 2;
}

/* İkinci fotoğraf için özel stil */
.col-6:last-child .image-container {
    transform: translateX(-30px);
    margin-top: 30px;
    z-index: 1;
}

/* Hover efektleri */
.image-container:hover {
    transform: scale(1.05) translateX(0) !important;
    z-index: 3 !important;
    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;
    }
    
    .mission-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;
        margin-top: 0;
    }
    
    .col-6 {
        padding: 5px;
    }
    
    .mission-point:hover {
        transform: none;
    }
} 