﻿:root {
    --primary: #8C6A3C;
    --dark: #4B3725;
    --bg: #F9F6F1;
    --white: #fff;
    --text: #5F5247;
    --border: #E7DED1;
    --shadow: 0 12px 35px rgba(140,106,60,.08);
    --hover: 0 24px 50px rgba(140,106,60,.14);
    --radius: 24px;
    --transition: .45s cubic-bezier(.4,0,.2,1);
}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter',sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* =========================
   TYPOGRAPHY
========================= */

h1, h2, h3 {
    font-family: 'BeautiqueDisplay-Bold';
    color: var(--dark);
    line-height: 1.5;
    letter-spacing: .3px;
    font-size: 18px;
    margin: 8px 0;
}

h4, h5, h6 {
    font-family: 'BeautiqueDisplay-Medium';
    color: var(--dark);
}

p, section, span {
    font-family: 'Inter',sans-serif;
}

/* =========================
   HERO
========================= */

.home-about {
    padding: 47px 0 11px;
    position: relative;
    background: url(/Design/img/SongNgocSpa/about.png) no-repeat;
    background-size: cover;
}

.decor-t-t-about,
.tree-img-top-decor,
.tree-img-bottom-decor,
.decor-img-home-back,
.img-decor-tree2-about {
    display: none;
}

.title-about-top {
    text-align: center;
    margin-bottom: 16px;
}

    .title-about-top h3 {
        font-size: 32px;
        color: var(--primary);
        font-family: 'BeautiqueDisplay-Regular';
        margin-bottom: 12px;
    }

    .title-about-top h2 {
        font-size: 38px;
        position: relative;
        display: inline-block;
    }

        .title-about-top h2:after {
            content: '';
            width: 90px;
            height: 2px;
            background: var(--primary);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -18px;
        }

/* =========================
   ABOUT
========================= */

.about {
    padding: 0;
}

.about-container h1 {
    font-size: 32px;
    margin-bottom: 28px;
}

.about-top-side,
.about-side-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.content-about-sec1,
.about-c-l {
    font-size: 16px;
    color: var(--text);
    text-align: justify;
}

/* =========================
   IMAGE CARD
========================= */

.img-decor-ll-about,
.img-decor-r-about,
.item-col-img-about-b,
.item-col-img-h {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .img-decor-ll-about a, .img-decor-r-about a, .item-col-img-about-b a, .item-col-img-h a {
        display: block;
    }

    .img-decor-ll-about img,
    .img-decor-r-about img,
    .item-col-img-about-b img,
    .item-col-img-h img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s ease;
        pointer-events: all;
        cursor: pointer;
    }

    .img-decor-ll-about:before,
    .img-decor-r-about:before,
    .item-col-img-about-b:before,
    .item-col-img-h:before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, transparent, rgba(75,55,37,.18) );
        opacity: 0;
        transition: .45s;
        z-index: 2;
        pointer-events: none;
    }

    .img-decor-ll-about:hover,
    .img-decor-r-about:hover,
    .item-col-img-about-b:hover,
    .item-col-img-h:hover {
        transform: translateY(-10px);
        box-shadow: var(--hover);
    }

        .img-decor-ll-about:hover img,
        .img-decor-r-about:hover img,
        .item-col-img-about-b:hover img,
        .item-col-img-h:hover img {
            transform: scale(1.08);
        }

        .img-decor-ll-about:hover:before,
        .img-decor-r-about:hover:before,
        .item-col-img-about-b:hover:before,
        .item-col-img-h:hover:before {
            opacity: 1;
        }
/* =========================
   GALLERY FIX 8 IMAGES
========================= */

.w-list-img-home {
    padding: 50px 20px;
    background: #FAEFE0;
}

.top-list-img-home {
    text-align: center;
    margin-bottom: 45px;
}

    .top-list-img-home h6 {
        font-size: 38px;
        font-family: 'BeautiqueDisplay-Bold';
        color: var(--dark);
        margin-bottom: 14px;
    }

    .top-list-img-home section {
        max-width: 760px;
        margin: auto;
        color: #7a6b5e;
        font-size: 16px;
        line-height: 1.8;
    }

/* GRID đều cho 8 ảnh */

.top-b-list-img {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

/* CARD */

.item-col-img-h {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    min-height: 280px;
    transition: all .45s ease;
}

    .item-col-img-h a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .item-col-img-h img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s ease;
    }

    /* overlay gradient */

    .item-col-img-h:before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(0,0,0,0) 20%, rgba(75,55,37,.18) );
        opacity: 0;
        transition: .4s;
        z-index: 2;
        pointer-events: none;
    }

    /* shine effect */

    .item-col-img-h:after {
        content: '';
        position: absolute;
        top: 0;
        left: -130%;
        width: 45%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.35), transparent );
        transform: skewX(-25deg);
        transition: 1s;
        z-index: 3;
        pointer-events: none;
    }

    /* hover */

    .item-col-img-h:hover {
        transform: translateY(-12px);
        box-shadow: var(--hover);
    }

        .item-col-img-h:hover img {
            transform: scale(1.08);
        }

        .item-col-img-h:hover:before {
            opacity: 1;
        }

        .item-col-img-h:hover:after {
            left: 140%;
        }

    /* bố cục luxury */

    .item-col-img-h:nth-child(1),
    .item-col-img-h:nth-child(8) {
        grid-column: span 2;
        min-height: 360px;
        height: 345px;
    }

    .item-col-img-h:nth-child(2),
    .item-col-img-h:nth-child(3),
    .item-col-img-h:nth-child(4),
    .item-col-img-h:nth-child(5),
    .item-col-img-h:nth-child(6),
    .item-col-img-h:nth-child(7) {
        min-height: 250px;
    }
/* =========================
   TABLET
========================= */

@media(max-width:1024px) {

    .top-b-list-img {
        grid-template-columns: repeat(2,1fr);
        gap: 18px;
    }

    .item-col-img-h,
    .item-col-img-h:nth-child(1),
    .item-col-img-h:nth-child(8) {
        min-height: 280px;
    }

    .top-list-img-home h6 {
        font-size: 38px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {
    h1, h2, h3 {
        font-size: 16px;
    }

    .w-list-img-home {
        padding: 60px 14px;
    }

    .top-b-list-img {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .item-col-img-h {
        min-height: 240px;
        border-radius: 18px;
    }

        .item-col-img-h:hover {
            transform: none;
        }

    .top-list-img-home h6 {
        font-size: 28px;
    }

    .top-list-img-home section {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* SMALL */

@media(max-width:480px) {

    .item-col-img-h {
        min-height: 200px;
    }

    .top-list-img-home h6 {
        font-size: 24px;
    }
}

/* =========================
   SLIDER
========================= */

.list-img-about-bottom {
    margin: 30px 0;
    margin-top: 0;
}

.item-col-img-about-b img {
    height: 460px;
}

/* =========================
   CONTENT
========================= */

.about-container section * {
    color: var(--text) !important;
    line-height: 1.8;
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px) {

    .about-top-side,
    .about-side-img {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-bottom: 20px;
    }

    .top-b-list-img {
        grid-template-columns: 1fr 1fr;
    }

    .item-col-img-h,
    .item-col-img-h:nth-child(1),
    .item-col-img-h:nth-child(6) {
        min-height: 300px;
    }

    .title-about-top h2 {
        font-size: 42px;
    }

    .about-container h1 {
        font-size: 34px;
    }

    .top-list-img-home h6 {
        font-size: 38px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .home-about {
        padding: 60px 0;
        padding-bottom: 12px;
    }

    .w-list-img-home {
        padding: 20px 14px;
    }

    .top-list-img-home {
        margin-bottom: 25px;
    }

    .title-about-top {
        margin-bottom: 45px;
    }

        .title-about-top h3 {
            font-size: 22px;
        }

        .title-about-top h2 {
            font-size: 28px;
        }

    .about-container h1 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .top-b-list-img {
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
    }

    .item-col-img-h,
    .item-col-img-h:nth-child(1),
    .item-col-img-h:nth-child(6) {
        min-height: auto;
        border-radius: 18px;
        height: auto;
    }

        .item-col-img-h:nth-child(2), .item-col-img-h:nth-child(3), .item-col-img-h:nth-child(4), .item-col-img-h:nth-child(5), .item-col-img-h:nth-child(6), .item-col-img-h:nth-child(7) {
            height: auto;
            min-height: auto;
        }

    .item-col-img-about-b img {
        height: 190px;
    }

    .top-list-img-home h6 {
        font-size: 28px;
    }

    .top-list-img-home section {
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
    }

    .img-decor-ll-about:hover,
    .img-decor-r-about:hover,
    .item-col-img-about-b:hover,
    .item-col-img-h:hover {
        transform: none;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px) {

    .title-about-top h2 {
        font-size: 24px;
    }

    .about-container h1 {
        font-size: 22px;
    }

    .top-list-img-home h6 {
        font-size: 24px;
    }

    .item-col-img-h {
        min-height: auto;
    }

    body {
        line-height: 1.7;
    }
}
