/* --- CSS HOME ABOUT SECTION --- */

.home-about-section {
    padding: 1rem 0 !important;
}

.home-container {
    width: 100%;
}

/* GRID UTAMA */
.home-about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0 160px;
    margin-top: 20px;
}

.home-about-image {
    width: 80%;
    height: auto;
    border-radius: 40px;
}

.home-about-content {
    padding: 0 80px;
}

.home-about-title {
    color: #6381a8; 
    font-size: 2.2rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 1.25rem;
}

.home-about-text {
    color: #6381a8; 
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* BUTTON */
.home-btn-about-appointment {
    background-color: #D1A361 !important; 
    border-color: #D1A361 !important;
    color: white !important;
    font-weight: bold;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1rem;
    text-transform: uppercase;
}

.home-btn-about-appointment:hover {
    background-color: #a87346 !important;
    border-color: #a87346 !important;
}


/* ===== RESPONSIVE ===== */

/* TABLET */
@media (max-width: 991.98px) {

    .home-about-flex {
        padding: 0 40px;
        grid-template-columns: 1fr 1fr;
    }

    .home-about-content {
        padding: 0 20px;
    }

    .home-about-title {
        font-size: 1.6rem;
    }

    .home-about-text {
        font-size: 1.05rem;
    }
    .home-btn-about-appointment{
        font-size: 0.75rem;
    }
}

/* MOBILE — tetap 2 kolom yang lebih responsif */
@media (max-width: 575.98px) {


    .home-about-flex {
        padding: 0 10px;
        grid-template-columns: 55% 45%; /* sedikit lebih ideal */
        gap: .5rem;
    }

    .home-about-image {
        width: 90%;
        border-radius: 18px;
    }

    .home-about-content {
        padding: 0 3px;
    }

    .home-about-title {
        font-size: 0.8rem;    /* mengecil lebih smooth */
        line-height: 1.3;
        margin-bottom: .4rem;
    }

    .home-about-text {
        font-size: .75rem;     /* lebih kecil dan rapi */
        line-height: 1.25;
        text-align: left;
        margin-bottom: .8rem;
    }

    .home-btn-about-appointment {
        padding: 10px 20px;
        width: 100%;
        max-width: 160px;
        font-size: 0.6rem;
        margin: .5rem auto 0;
    }

}
