﻿/* =====================================================
   HAKKIMDA
===================================================== */

body {
    background-color: #FFFFFF;
}
/* Sayfanın genelindeki krem etkisini kırmak için */
.about-page,
.about-section,
.about-container {
    background-color: #FFFFFF !important;
}
.about-page {
    width: 100%;
    background-color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    padding: 40px 0 100px 0; /* Padding artırıldı, boşluk genişletildi */
}

/* === Başlık Alanı === */
.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 30px; /* Alt boşluk artırıldı */
}

    .section-title::before {
        content: "";
        position: absolute;
        top: -12px; /* Hafif yukarı alındı */
        left: 50%;
        transform: translateX(-50%);
        width: 60px; /* Genişlik artırıldı */
        height: 4px; /* Yükseklik artırıldı */
        background-color: #CFD2A5;
        border-radius: 5px;
    }

    .section-title .subtitle {
        display: block;
        font-size: 1rem; /* Yazı boyutu artırıldı */
        color: #7c7c7c;
        text-transform: uppercase;
        margin-bottom: 12px; /* Alt boşluk artırıldı */
        letter-spacing: 1.2px;
        font-weight: 600;
    }

    .section-title h2 {
        font-size: 2.2rem; /* Başlık biraz büyütüldü */
        font-weight: 700;
        color: #2F4730;
        margin: 0;
    }

/* === İçerik Alanı === */
.about-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 10px /* Sağ ve sol padding artırıldı */
}

.about-container {
    width: 100%;
    max-width: 1000px; /* 1100px'den küçültüldü */
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    background-color: #FFFFFF;
}

/* === Görsel === */
.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
/*    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);*/
    position: relative;
    z-index: 1;

}
/* === Metin Alanı === */
.about-content {
    max-width: 540px;
}

    .about-content p {
        color: #414936;
        font-size: 1.1rem; /* Yazı boyutu artırıldı */
        line-height: 1.85;
        margin-bottom: 30px;
    }

    .about-content ul {
        list-style: none;
        padding: 0;
        margin-bottom: 35px;
    }

        .about-content ul li {
            display: flex;
            align-items: center;
            gap: 10px; /* Gap biraz artırıldı */
            color: #2E4227;
            font-size: 1.05rem;
            margin-bottom: 14px;
        }

/* === Buton === */
.btn-about {
    background-color: #CFD2A5;
    color: #515642;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s ease;
}

    .btn-about:hover {
        background-color: #A8C3A3;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(168, 195, 163, 0.5);
    }


/* ================= TABLET ================= */
@media (max-width: 992px) {

    .about-container {
        grid-template-columns: 1fr; /* alt alta */
        text-align: center;
        gap: 20px;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

        .about-image img {
            max-width: 260px;
            margin-bottom: 10px;
        }

    .about-content {
        max-width: 100%;
    }

        .about-content p {
            font-size: 1.05rem;
        }
}


/* ================= TELEFON ================= */
@media (max-width: 480px) {

    .about-page {
        padding: 20px 0 60px 0;
    }

    .about-section {
        padding: 30px 10px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

        .about-image img {
            max-width: 220px;
            margin-bottom: 5px; /* resimle yazı arası boşluk */
        }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title .subtitle {
        font-size: 0.85rem;
    }

    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-content ul li {
        font-size: 0.95rem;
    }

    .btn-about {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
}
