/* =========================================================
   TEN ONE RESORT
   About Section
   about.css
   ========================================================= */


/* =========================================================
   1. SECTION
   ========================================================= */

.about-section {
    position: relative;

    padding:
        var(--space-32)
        0;

    overflow: hidden;

    background:
        var(--color-background);

    isolation: isolate;
}


/* =========================================================
   2. SUBTLE BACKGROUND DECORATION
   ========================================================= */

.about-section::before {
    content: "";

    position: absolute;

    top: -260px;
    left: -220px;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(95, 169, 184, 0.09) 0%,
            rgba(95, 169, 184, 0) 72%
        );

    pointer-events: none;

    z-index: -1;
}


.about-section::after {
    content: "";

    position: absolute;

    right: -180px;
    bottom: -250px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(63, 118, 85, 0.08) 0%,
            rgba(63, 118, 85, 0) 72%
        );

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   3. CONTAINER
   ========================================================= */

.about-container {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: var(--space-20);

    width:
        min(
            calc(100% - (var(--container-padding) * 2)),
            var(--container-width)
        );

    margin-inline: auto;
}


/* =========================================================
   4. CONTENT
   ========================================================= */

.about-content {
    position: relative;

    max-width: 600px;
}


/* =========================================================
   5. EYEBROW
   ========================================================= */

.about-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: var(--space-5);

    color: var(--color-primary-light);

    font-family: var(--font-body-strong);

    font-size: var(--font-size-sm);

    font-weight: 600;

    letter-spacing: 0.17em;

    line-height: 1.2;

    text-transform: uppercase;
}


.about-eyebrow::before {
    content: "";

    width: 34px;
    height: 1px;

    background:
        var(--color-primary-light);
}


/* =========================================================
   6. TITLE
   ========================================================= */

.about-title {
    max-width: 590px;

    margin-bottom: var(--space-6);

    color: var(--color-text-dark);

    font-family: var(--font-heading);

    font-size: clamp(
        3rem,
        5vw,
        4.5rem
    );

    font-weight: var(--font-weight-semibold);

    line-height: 0.95;

    letter-spacing: -0.03em;
}


.about-title span {
    display: block;

    color: var(--color-primary);
}


/* =========================================================
   7. LEAD TEXT
   ========================================================= */

.about-lead {
    max-width: 560px;

    margin-bottom: var(--space-4);

    color: var(--color-text-dark);

    font-family: var(--font-body-strong);

    font-size: var(--font-size-md);

    font-weight: 600;

    line-height: 1.7;
}


/* =========================================================
   8. SECONDARY TEXT
   ========================================================= */

.about-text {
    max-width: 560px;

    margin-bottom: var(--space-8);

    color: var(--color-text-light);

    font-family: var(--font-body-strong);

    font-size: var(--font-size-base);

    font-weight: 400;

    line-height: 1.8;
}


/* =========================================================
   9. HIGHLIGHTS
   ========================================================= */

.about-highlights {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: var(--space-8);
}


.about-highlight {
    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        3px 0;
}


/* =========================================================
   10. HIGHLIGHT ICON
   ========================================================= */

.about-highlight-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    border:
        1px solid
        rgba(63, 118, 85, 0.18);

    border-radius: 50%;

    color: var(--color-primary-light);

    background:
        rgba(63, 118, 85, 0.07);

    font-size: var(--icon-sm);
}


/* =========================================================
   11. HIGHLIGHT TEXT
   ========================================================= */

.about-highlight div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.about-highlight strong {
    color: var(--color-text-dark);

    font-family: var(--font-body-strong);

    font-size: var(--font-size-sm);

    font-weight: 700;

    line-height: 1.45;
}


.about-highlight span {
    color: var(--color-text-light);

    font-family: var(--font-body);

    font-size: var(--font-size-xs);

    line-height: 1.5;
}


/* =========================================================
   12. EXPLORE LINK
   ========================================================= */

.about-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--color-primary);

    font-family: var(--font-body-strong);

    font-size: var(--font-size-sm);

    font-weight: 700;

    transition:
        color var(--transition-base);
}


.about-link-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    color: var(--color-primary);

    background:
        rgba(63, 118, 85, 0.09);

    transition:
        transform var(--transition-base),
        background-color var(--transition-base);
}


.about-link:hover {
    color: var(--color-primary-dark);
}


.about-link:hover
.about-link-arrow {
    transform: translateX(4px);

    background:
        rgba(63, 118, 85, 0.16);
}


/* =========================================================
   13. MEDIA WRAPPER
   ========================================================= */

.about-media {
    position: relative;

    width: 100%;

    padding:
        20px 0
        20px 20px;
}


/* =========================================================
   14. VIDEO CARD
   ========================================================= */

.about-video-card {
    position: relative;

    width: 100%;

    overflow: visible;
}


/* =========================================================
   15. VIDEO FRAME
   ========================================================= */

.about-video-frame {
    position: relative;

    aspect-ratio: 16 / 10;

    width: 100%;

    overflow: hidden;

    border-radius:
        28px;

    background:
        var(--color-primary-dark);

    box-shadow:
        0 24px 65px
        rgba(22, 74, 58, 0.18);
}


/* =========================================================
   16. VIDEO
   ========================================================= */

.about-video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   17. VIDEO CORNER DECORATION
   ========================================================= */

.about-video-corner {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 58px;
    height: 58px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.65);

    border-right:
        1px solid
        rgba(255, 255, 255, 0.65);

    border-radius:
        0 18px 0 0;

    pointer-events: none;
}


/* =========================================================
   18. VIDEO INFORMATION
   ========================================================= */

.about-video-info {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 14px;

    padding-inline: 4px;
}


.about-video-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--color-primary);

    font-family: var(--font-body-strong);

    font-size: var(--font-size-xs);

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.about-video-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--color-water);
}


.about-video-location {
    color: var(--color-text-muted);

    font-family: var(--font-body);

    font-size: var(--font-size-xs);
}


/* =========================================================
   19. FLOATING BADGE
   ========================================================= */

.about-floating-badge {
    position: absolute;

    left: -2px;


    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 210px;

    padding:
        12px 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.7);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.91);

    box-shadow:
        0 12px 32px
        rgba(22, 74, 58, 0.12);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);
}


.about-floating-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex-shrink: 0;

    border-radius: 50%;

    color: var(--color-white);

    background:
        var(--color-primary);

    font-size: var(--icon-sm);
}


.about-floating-badge div {
    display: flex;

    flex-direction: column;

    gap: 1px;
}


.about-floating-badge strong {
    color: var(--color-text-dark);

    font-family: var(--font-body-strong);

    font-size: var(--font-size-sm);

    font-weight: 700;
}


.about-floating-badge span {
    color: var(--color-text-muted);

    font-size: var(--font-size-xs);
}


/* =========================================================
   20. TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .about-section {
        padding:
            var(--space-24)
            0;
    }


    .about-container {
        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(0, 1.05fr);

        gap: var(--space-10);
    }


    .about-title {
        font-size:
            clamp(
                2.7rem,
                5vw,
                3.8rem
            );
    }


    .about-lead {
        font-size: var(--font-size-base);
    }


    .about-text {
        font-size: var(--font-size-sm);
    }


    .about-media {
        padding:
            15px 0
            15px 10px;
    }


    .about-video-frame {
        border-radius: 22px;
    }


    .about-floating-badge {
        left: -5px;
        bottom: 65px;

        min-width: 195px;

        padding:
            10px 12px;
    }

}


/* =========================================================
   21. MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .about-section {
        padding:
            var(--space-20)
            0
            var(--space-20);
    }


    .about-container {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: var(--space-10);
    }


    .about-content {
        width: 100%;

        max-width: 100%;
    }


    .about-eyebrow {
        margin-bottom: 14px;

        font-size: 0.7rem;

        letter-spacing: 0.14em;
    }


    .about-eyebrow::before {
        width: 25px;
    }


    .about-title {
        max-width: 100%;

        margin-bottom: 18px;

        font-size:
            clamp(
                2.5rem,
                10vw,
                3.4rem
            );

        line-height: 0.94;
    }


    .about-lead {
        max-width: 100%;

        margin-bottom: 12px;

        font-size:
            clamp(
                0.95rem,
                3vw,
                1.05rem
            );

        line-height: 1.65;
    }


    .about-text {
        max-width: 100%;

        margin-bottom: 24px;

        font-size: 0.9rem;

        line-height: 1.7;
    }


    .about-highlights {
        gap: 12px;

        margin-bottom: 26px;
    }


    .about-highlight {
        gap: 11px;
    }


    .about-highlight-icon {
        width: 38px;
        height: 38px;

        font-size: 13px;
    }


    .about-highlight strong {
        font-size: 0.8rem;
    }


    .about-highlight span {
        font-size: 0.68rem;
    }


    .about-media {
        width: 100%;

        padding:
            10px
            0
            25px;
    }


    .about-video-frame {
        aspect-ratio: 16 / 10;

        border-radius: 20px;

        box-shadow:
            0 18px 42px
            rgba(22, 74, 58, 0.15);
    }


    .about-video-info {
        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }


    .about-floating-badge {
        left: 12px;
        bottom: 68px;

        min-width: 190px;

        padding:
            10px 12px;

        border-radius: 12px;
    }


    .about-floating-icon {
        width: 31px;
        height: 31px;

        font-size: 12px;
    }


    .about-floating-badge strong {
        font-size: 0.78rem;
    }


    .about-floating-badge span {
        font-size: 0.65rem;
    }

}


/* =========================================================
   22. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .about-section {
        padding:
            70px 0;
    }


    .about-title {
        font-size:
            clamp(
                2.25rem,
                11vw,
                3rem
            );
    }


    .about-lead {
        font-size: 0.9rem;
    }


    .about-text {
        font-size: 0.82rem;
    }


    .about-highlight-icon {
        width: 35px;
        height: 35px;
    }


    .about-highlight strong {
        font-size: 0.75rem;
    }


    .about-highlight span {
        font-size: 0.64rem;
    }


    .about-link {
        font-size: 0.78rem;
    }


    .about-video-frame {
        aspect-ratio: 4 / 3;

        border-radius: 17px;
    }


    .about-video-info {
        margin-top: 10px;
    }


    .about-floating-badge {
        left: 8px;
        bottom: 62px;

        min-width: 175px;

        padding:
            8px 10px;
    }

}


/* =========================================================
   23. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-link,
    .about-link-arrow {
        transition: none;
    }


    .about-link:hover
    .about-link-arrow {
        transform: none;
    }

}