﻿/* Genel Stil */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.hasat-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 15px;
}

.hasat-title {
    text-align: center;
    color: #8B4513;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.hasat-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: transform 0.3s ease-in-out;
}

    .hasat-card:hover {
        transform: scale(1.03);
    }

.hasat-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

    .hasat-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease-in-out;
    }

    .hasat-image:hover img {
        transform: scale(1.1);
    }

.hasat-text {
    width: 50%;
    padding: 40px;

}

    .hasat-text h3 {
        font-size: 26px;
        color: #228B22; /* Yeşil başlık */
        font-weight: bold;
    }

    .hasat-text p {
        font-size: 17px;
        color: #8B4513; /* Kahverengi metin */
        line-height: 1.8;
    }

/* Alternatif Sıralama */
.hasat-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .hasat-card {
        flex-direction: column;
    }

        .hasat-card:nth-child(even) {
            flex-direction: column;
        }

    .hasat-image, .hasat-text {
        width: 100%;
    }
}
