﻿/* ===========================
   ABOUT
=========================== */

.about-section {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
    padding: 140px 40px;
}

.about-content {
    width: 50%;
}

.about-tag {
    color: #b11226;
    letter-spacing: 4px;
    font-weight: 700;
}

.about-title {
    font-size: 70px;
    font-weight: 900;
    line-height: 1.05;
    margin: 25px 0 30px;
}

    .about-title span {
        color: #b11226;
    }

.about-description {
    color: #d0d0d0;
    font-size: 22px;
    line-height: 1.8;
    max-width: 650px;
}

.about-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.about-card {
    background: #111;
    border: 1px solid rgba(177,18,38,.20);
    border-radius: 20px;
    padding: 35px;
    transition: .35s;
}

    .about-card:hover {
        transform: translateY(-10px);
        border-color: #b11226;
        box-shadow: 0 0 35px rgba(177,18,38,.35);
    }

    .about-card i {
        font-size: 40px;
        color: #b11226;
        margin-bottom: 20px;
    }

    .about-card h4 {
        color: white;
        font-size: 24px;
        font-weight: 700;
    }

    .about-card p {
        color: #bdbdbd;
        margin-top: 12px;
        line-height: 1.7;
    }

.about-image-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 820px;
    transition: .5s ease;
}}

    .about-image:hover {
        transform: scale(1.04);
    }

.about-image-area::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #b11226;
    filter: blur(180px);
    opacity: .25;
    z-index: -1;
}

@media(max-width:768px) {

    .about-section {
        display: flex;
        flex-direction: column;
        padding: 70px 20px;
    }

    .about-image-area {
        order: 1;
        text-align: center;
        margin-bottom: 35px;
    }

    .about-image {
        width: 90%;
        max-width: 330px;
    }

    .about-content {
        order: 2;
        text-align: center;
    }

    .about-title {
        font-size: 34px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
@media (max-width:768px) {

    .about-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 18px;
    }
}