﻿/*=========================================================
    ABOUT US
=========================================================*/

.about-section {
    position: relative;
    padding: 120px 0;
    background: #f8f6f2;
    overflow: hidden;
}

    .about-section::before {
        content: "";
        position: absolute;
        top: 0;
        right: -120px;
        width: 350px;
        height: 350px;
        background: rgba(212, 175, 55, 0.08);
        border-radius: 50%;
    }

    .about-section::after {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 280px;
        height: 280px;
        background: rgba(107, 15, 26, 0.05);
        border-radius: 50%;
    }

/*=========================================================
    IMAGE
=========================================================*/

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

    .about-image img {
        width: 100%;
        display: block;
        border-radius: 25px;
        transition: .6s;
    }

    .about-image:hover img {
        transform: scale(1.08);
    }

/*=========================================================
    EXPERIENCE BOX
=========================================================*/

.experience-box {
    position: absolute;
    right: -20px;
    bottom: 35px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: linear-gradient(135deg,#6B0F1A,#8A1624);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
    border: 6px solid #fff;
}

    .experience-box h2 {
        margin: 0;
        font-size: 48px;
        font-family: "Cormorant Garamond", serif;
        font-weight: 700;
        color: #D4AF37;
    }

    .experience-box span {
        margin-top: 5px;
        font-size: 14px;
        text-align: center;
        line-height: 1.5;
        letter-spacing: 1px;
    }

/*=========================================================
    CONTENT
=========================================================*/

.about-content {
    padding-left: 35px;
}

.section-tag {
    display: inline-block;
    color: #D4AF37;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
}

    .section-tag::after {
        content: "";
        width: 70px;
        height: 2px;
        background: #D4AF37;
        display: inline-block;
        margin-left: 15px;
        vertical-align: middle;
    }

.about-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    color: #6B0F1A;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content h5 {
    color: #777;
    font-size: 20px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/*=========================================================
    FEATURES
=========================================================*/

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 40px;
}

    .about-features div {
        display: flex;
        align-items: center;
        font-weight: 500;
        color: #333;
        transition: .35s;
    }

        .about-features div:hover {
            transform: translateX(8px);
        }

    .about-features i {
        width: 34px;
        height: 34px;
        margin-right: 12px;
        border-radius: 50%;
        background: #D4AF37;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
    }

/*=========================================================
    BUTTON
=========================================================*/

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: #6B0F1A;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .35s;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(107,15,26,.25);
}

    .about-btn:hover {
        background: #D4AF37;
        color: #fff;
        transform: translateY(-5px);
    }

/*=========================================================
    RESPONSIVE
=========================================================*/

@media (max-width:991px) {

    .about-section {
        padding: 80px 0;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

        .about-content h2 {
            font-size: 42px;
        }

    .experience-box {
        width: 140px;
        height: 140px;
        right: 15px;
        bottom: 15px;
    }

        .experience-box h2 {
            font-size: 38px;
        }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width:767px) {

    .about-content h2 {
        font-size: 34px;
    }

    .about-content h5 {
        font-size: 18px;
    }

    .section-tag {
        font-size: 13px;
    }

    .experience-box {
        width: 120px;
        height: 120px;
    }

        .experience-box h2 {
            font-size: 32px;
        }

        .experience-box span {
            font-size: 11px;
        }

    .about-btn {
        width: 100%;
        justify-content: center;
    }
}
