/* ==========================================================
   ABOUT
========================================================== */

.home-about{
    padding:100px 0;
    background:#f8f9fb;
}

/* Layout */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* Image */

.about-image{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.about-image img{
    width:100%;
    display:block;
    transition:transform .6s ease;
}

.about-image:hover img{
    transform:scale(1.05);
}

/* Content */

.about-content h2{
    font-size:3rem;
    line-height:1.2;
    margin:18px 0 24px;
    color:#111;
}

.about-content p{
    font-size:1.1rem;
    line-height:1.9;
    color:#666;
}

/* Features */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;
}

.feature-item{
    background:#fff;
    padding:18px 20px;
    border:1px solid #ececec;
    border-radius:14px;
    box-shadow:0 8px 18px rgba(0,0,0,.05);
    font-weight:600;
    color:#222;
}

/* Button */

.about-button{
    display:inline-block;
    margin-top:20px;

    padding:16px 36px;

    background:#7B1113;
    color:#fff;

    text-decoration:none;
    font-weight:600;

    border-radius:999px;

    box-shadow:0 10px 25px rgba(123,17,19,.25);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.about-button:hover{
    background:#5d0d0f;
    transform:translateY(-3px);
    box-shadow:0 16px 35px rgba(123,17,19,.35);
}