
/* ==============================
   ABOUT SINGLE IMAGE CAROUSEL
================================ */

.about-carousel {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.about-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* ==============================
   IMAGE OVERLAY
================================ */

.about-slide-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.60) 40%,
            rgba(0, 0, 0, 0.18) 100%
        );
}


/* ==============================
   CONTENT
================================ */

.about-slide-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 30px;
    color: #fff;
}

.about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: #d9b45b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
}

.about-subtitle::before {
    content: "";
    width: 35px;
    height: 2px;
    background: #d9b45b;
}

.about-slide-content h1 {
    margin: 0 0 18px;

    font-size: 54px;
    line-height: 1.12;
    font-weight: 700;
}

.about-slide-content p {
    max-width: 600px;

    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 16px;
    line-height: 1.75;
}


/* ==============================
   BUTTON
================================ */

.about-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    padding: 14px 25px;

    background: #d9b45b;
    color: #111;

    border: 1px solid #d9b45b;
    border-radius: 4px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.about-read-btn span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.about-read-btn:hover {
    background: transparent;
    color: #fff;
}

.about-read-btn:hover span {
    transform: translateX(5px);
}


/* ==============================
   TABLET
================================ */

@media (max-width: 900px) {

    .about-carousel {
        height: 500px;
    }

    .about-slide-content {
        padding: 35px 25px;
    }

    .about-slide-content h1 {
        font-size: 44px;
    }
}


/* ==============================
   MOBILE
================================ */

@media (max-width: 600px) {

    .about-carousel {
        height: 500px;
    }

    .about-slide img {
        object-position: 60% center;
    }

    .about-slide-overlay {
        align-items: flex-end;

        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.15) 0%,
                rgba(0, 0, 0, 0.55) 42%,
                rgba(0, 0, 0, 0.92) 100%
            );
    }

    .about-slide-content {
        padding: 30px 20px;
        padding-bottom: 38px;
    }

    .about-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    .about-subtitle::before {
        width: 25px;
    }

    .about-slide-content h1 {
        font-size: 32px;
        line-height: 1.18;
        margin-bottom: 14px;
    }

    .about-slide-content p {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .about-read-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}


/* ==============================
   SMALL MOBILE
================================ */

@media (max-width: 400px) {

    .about-carousel {
        height: 470px;
    }

    .about-slide-content h1 {
        font-size: 28px;
    }

    .about-slide-content p {
        font-size: 12px;
    }
}

