/* =========================================
   ANA SAYFA (INDEX) STİLLERİ - MASAÜSTÜ
   ========================================= */

.main-banner-section {
    width: 100%;
    overflow: hidden;
}

.main-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 70px 20px;
    background-color: var(--acik-krem);
}

.about-container {
    max-width: 1250px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-logo {
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.about-header h2 {
    color: var(--bordo);
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Masaüstü Yan Yana Yerleşim (Grid veya Flex) */
.about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.about-text {
    flex: 1.1; /* Metin alanı genişliği */
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

/* Masaüstü Resim Alanı (Net ve Orantılı) */
.about-images {
    flex: 0.9; /* Resim alanı genişliği */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-images .img-main {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.img-sub-group {
    display: flex;
    gap: 15px;
}

.img-sub-group img {
    width: 50%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-images img:hover {
    transform: scale(1.02);
}

/* Özellik (Features) Kutuları Bölümü */
.features-section {
    padding: 40px 20px 80px;
    background-color: var(--acik-krem);
}

.features-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card.clickable {
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-img-wrapper {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.card-content h3 {
    color: var(--bordo);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-content h3 i {
    color: var(--turuncu);
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


/* =========================================
   MOBİL UYUMLULUK (992px ALTINDA)
   ========================================= */
@media (max-width: 992px) {
    .about-section {
        padding: 40px 15px;
    }

    /* Mobilde her şey alt alta aksın */
    .about-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-text, .about-images {
        width: 100%;
    }

    .about-header h2 {
        font-size: 20px;
        text-align: center;
    }

    .about-logo {
        height: 45px;
    }

    .about-text p {
        font-size: 15px;
        text-align: left;
    }

    /* Mobilde resimler alt alta ve net görünsün */
    .about-images {
        gap: 15px;
    }

    .about-images .img-main {
        height: 240px;
    }

    .img-sub-group {
        flex-direction: column; /* Mobilde iki alt resim de alt alta dizilsin */
        gap: 15px;
    }

    .img-sub-group img {
        width: 100%;
        height: 200px;
    }

    /* Kutular mobil görünüm */
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}