.elementor-6 .elementor-element.elementor-element-478ee1a{width:var( --container-widget-width, 100.723% );max-width:100.723%;--container-widget-width:100.723%;--container-widget-flex-grow:0;}.elementor-6 .elementor-element.elementor-element-478ee1a.elementor-element{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-478ee1a *//* =====================================================
   RESET
===================================================== */

#the-lua,
#the-lua *{
    box-sizing:border-box;
}

#the-lua{
    --burgundy:#651F24;
    --cream:#F4EBDD;
    --paper:#FAF7F1;
    --dark:#241B18;
    --brown:#76564A;

    width:100%;
    overflow:hidden;

    font-family:
    Poppins,
    Arial,
    sans-serif;
   
    background:var(--paper);
    color:var(--dark);
}

#the-lua img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

#the-lua a{
    color:inherit;
    text-decoration:none;
}

html{
    scroll-behavior:smooth;
}


/* =====================================================
   HEADER
===================================================== */
/* =====================================================
   THE LÚA — VIETNAMESE FONT SYSTEM
===================================================== */

/* FONT CHÍNH */

html,
body {

    font-family:
        'Be Vietnam Pro',
        Arial,
        sans-serif !important;

}


/* TẤT CẢ ELEMENTOR */

body,
body *,
.elementor,
.elementor *,
.elementor-widget,
.elementor-widget-text-editor,
.elementor-widget-heading,
.elementor-button,
button,
input,
textarea,
select {

    font-family:
        'Be Vietnam Pro',
        Arial,
        sans-serif !important;

}


/* HEADING */

h1,
h2,
h3,
h4,
h5,
h6,
.elementor-heading-title {

    font-family:
        'Playfair Display',
        Georgia,
        serif !important;

}


/* MENU */

nav,
nav a,
.menu,
.menu a,
.elementor-nav-menu,
.elementor-nav-menu a {

    font-family:
        'Be Vietnam Pro',
        Arial,
        sans-serif !important;

}


/* BUTTON */

button,
.elementor-button,
a.elementor-button {

    font-family:
        'Be Vietnam Pro',
        Arial,
        sans-serif !important;

}


/* INPUT */

input,
textarea,
select {

    font-family:
        'Be Vietnam Pro',
        Arial,
        sans-serif !important;

}


/* =====================================================
   THE LÚA CUSTOM SECTIONS
===================================================== */

.lua-menu-new,
.lua-menu-new * {

    font-family:
        'Be Vietnam Pro',
        Arial,
        sans-serif;

}


/* TITLE */

.lua-menu-intro h2,
.lua-menu-title {

    font-family:
        'Playfair Display',
        Georgia,
        serif !important;

}


/* MARQUEE */

.lua-menu-track button {

    font-family:
        'Playfair Display',
        Georgia,
        serif !important;

}


/* MENU ITEM */

.lua-menu-item-name,
.lua-menu-item-price {

    font-family:
        'Be Vietnam Pro',
        Arial,
        sans-serif !important;

}


/* =====================================================
   VIETNAMESE TEXT FIX
===================================================== */

body {

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}


/* Không cho trình duyệt tự đổi font */

* {

    font-synthesis: none;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:600px){

    body {

        font-family:
            'Be Vietnam Pro',
            Arial,
            sans-serif !important;

    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {

        font-family:
            'Playfair Display',
            Georgia,
            serif !important;

    }

}
.lua-header{
    position:fixed;
    margin-top: 20px;
    top:0;
    left:0;

    width:100%;

    height:86px;

    padding:0 4vw;

    display:flex;
    align-items:center;
    justify-content:space-between;

    z-index:9999;

    color:#fff;

    transition:
        background .4s ease,
        color .4s ease,
        height .4s ease;

}

.lua-header.scrolled{
    height:70px;

    background:rgba(250,247,241,.96);

    color:var(--dark);

    backdrop-filter:blur(15px);
}
/* =====================================================
   HEADER & MOBILE MENU FIXES
===================================================== */
.lua-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5vw;
    transition: all 0.3s ease;
}

/* Định vị nút Mobile Hamburger */
.lua-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    padding: 0;
}

.lua-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--cream, #F4EBDD);
    transition: all 0.3s ease;
}

.lua-header.scrolled .lua-menu-toggle span {
    background-color: var(--burgundy, #651F24);
}

/* Lớp Mobile Menu phủ màn hình */
.lua-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark, #241B18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.lua-mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lua-mobile-menu a {
    color: var(--cream, #F4EBDD);
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.lua-mobile-menu a:hover {
    color: var(--burgundy, #651F24);
}

/* Xoay nút hamburger thành dấu X khi kích hoạt mở */
.lua-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--cream, #F4EBDD) !important;
}

.lua-menu-toggle.active span:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--cream, #F4EBDD) !important;
}

/* Ẩn bớt nav chính và hiện nút Toggle ở Mobile */
@media (max-width: 900px) {
    .lua-nav, .lua-booking {
        display: none !important;
    }
    .lua-menu-toggle {
        display: flex !important;
    }
}
.lua-logo{
    display:flex;
    flex-direction:column;

    line-height:.8;

    letter-spacing:.15em;
}

.lua-logo span{
    font-size:9px;
}

.lua-logo strong{
    font-family:Georgia,serif;
    font-size:28px;
    letter-spacing:.04em;
}

.lua-nav{
    display:flex;
    gap:38px;

    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.12em;
}

.lua-nav a{
    position:relative;
}

.lua-nav a:after{
    content:"";

    position:absolute;

    left:0;
    bottom:-7px;

    width:0;
    height:1px;

    background:currentColor;

    transition:.3s;
}

.lua-nav a:hover:after{
    width:100%;
}

.lua-booking{
    border:1px solid currentColor;

    padding:12px 20px;

    font-size:10px;
    letter-spacing:.12em;

    transition:.3s;
}

.lua-booking:hover{
    background:var(--burgundy);
    color:#fff;
    border-color:var(--burgundy);
}

.lua-menu-toggle{
    display:none;
}


/* =====================================================
   HERO
===================================================== */

.lua-hero{
    height:100vh;
    min-height:650px;

    position:relative;

    color:#fff;

    overflow:hidden;
}

.lua-hero-image{
    position:absolute;
    inset:0;

    transform:scale(1.08);

    transition:transform 1.5s cubic-bezier(.2,.7,.2,1);
}

.lua-hero.loaded .lua-hero-image{
    transform:scale(1);
}

.lua-hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,.35),
        rgba(0,0,0,.15) 45%,
        rgba(0,0,0,.6)
    );
}

.lua-hero-content{
    position:absolute;

    left:8vw;
    bottom:14vh;
}

.lua-eyebrow{
    font-size:11px;
    letter-spacing:.35em;

    margin-bottom:20px;
}

.lua-hero h1{
    margin:0;

    font-family:Georgia,serif;

    font-size:clamp(80px,14vw,210px);

    font-weight:400;

    line-height:.72;

    letter-spacing:-.05em;
}

.lua-hero h1 span{
    display:block;
    margin-left:8vw;

    font-style:italic;
}

.lua-hero-content p{
    margin:45px 0 28px;

    font-size:14px;
    line-height:1.8;
}
/* =====================================================
   HERO TEXT HIGHLIGHTING - THE LÚA
===================================================== */

/* 1. Dòng chữ nhỏ phía trên: "ẨM THỰC ĐỒNG QUÊ" */
.lua-hero-eyebrow,
.lua-eyebrow {
    color: #F2C94C !important; /* Vàng lúa chín nổi bật */
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85); /* Tách chữ khỏi nền lá cây */
}

/* 2. Tiêu đề chính lớn: "THE LÚA" */
.lua-hero-title,
.lua-hero h1 {
    color: #F2C94C !important; /* Vàng lúa chín đồng bộ */
    font-weight: 700;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.75), 
                0 2px 4px rgba(0, 0, 0, 0.9);
}

/* 3. Dòng mô tả bên dưới: "Một chút đồng quê giữa nhịp sống thành phố." */
.lua-hero-subtitle,
.lua-hero p,
.lua-hero-content > div:not(.lua-hero-eyebrow):not(.lua-hero-title) {
    color: #F4EBDD !important; /* Màu kem ấm sang trọng, dễ đọc */
    font-size: 1.15rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85); /* Tạo hiệu ứng nổi khối trên nền cỏ */
}
.lua-main-btn{
    display:inline-flex;

    align-items:center;
    gap:35px;

    padding:16px 22px;

    background:var(--burgundy);
    color:#fff;

    font-size:10px;
    letter-spacing:.15em;

    transition:.4s;
}

.lua-main-btn:hover{
    gap:50px;
}

.lua-main-btn span{
    font-size:17px;
}

.lua-main-btn.light{
    background:#fff;
    color:var(--burgundy);
}

.lua-scroll{
    position:absolute;

    right:4vw;
    bottom:35px;

    writing-mode:vertical-rl;

    font-size:8px;
    letter-spacing:.3em;

    display:flex;
    gap:15px;
    align-items:center;
}

.lua-scroll span{
    display:block;

    width:1px;
    height:60px;

    background:#fff;

    animation:scrollLine 2s infinite;
}

@keyframes scrollLine{
    0%{transform:scaleY(0);transform-origin:top}
    50%{transform:scaleY(1);transform-origin:top}
    51%{transform-origin:bottom}
    100%{transform:scaleY(0);transform-origin:bottom}
}




/* =====================================================
   THE LÚA — SPACE / COUNTRYSIDE
===================================================== */

.lua-space {

    --burgundy: #651f24;
    --cream: #f3eadb;
    --paper: #faf7f1;
    --dark: #241b18;

    position: relative;

    background: var(--paper);

    color: var(--dark);

    padding: 150px 6vw 170px;

    overflow: hidden;

}


/* =====================================================
   HEADING
===================================================== */

.lua-space-heading {

    max-width: 1400px;

    margin: 0 auto 100px;

    display: grid;

    grid-template-columns:
        .7fr
        1.5fr
        .8fr;

    align-items: end;

    gap: 50px;

}


.lua-space-number {

    align-self: start;

    padding-top: 15px;

    font-size: 9px;

    letter-spacing: .28em;

    color: var(--burgundy);

}


.lua-space-heading-main span {

    display: block;

    margin-bottom: 22px;

    font-size: 9px;

    letter-spacing: .3em;

    opacity: .55;

}


.lua-space-heading-main h2 {

    margin: 0;

    font-family:
        'Playfair Display',
        Georgia,
        serif !important;

    font-size:
        clamp(70px, 9vw, 135px);

    line-height: .82;

    font-weight: 400;

    letter-spacing: -.055em;

}


.lua-space-heading-main h2 i {

    color: var(--burgundy);

    font-weight: 400;

}


.lua-space-heading > p {

    max-width: 300px;

    margin: 0;

    font-family:
        'Be Vietnam Pro',
        Arial,
        sans-serif;

    font-size: 12px;

    line-height: 2;

    opacity: .65;

}


/* =====================================================
   GALLERY
===================================================== */

.lua-space-gallery {

    position: relative;

    max-width: 1400px;

    min-height: 1150px;

    margin: auto;

}


/* =====================================================
   IMAGE BASE
===================================================== */

.lua-space-photo {

    position: absolute;

    overflow: hidden;

    border-radius: 26px;

    background: #ddd;

}


.lua-space-photo img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1.2s
        cubic-bezier(.2,.7,.2,1);

}


.lua-space-photo:hover img {

    transform: scale(1.055);

}


/* =====================================================
   MAIN PHOTO
===================================================== */

.lua-space-photo-main {

    top: 0;

    left: 7%;

    width: 58%;

    height: 680px;

    z-index: 2;

}


/* =====================================================
   SMALL PHOTO
===================================================== */

.lua-space-photo-small {

    top: 120px;

    right: 0;

    width: 29%;

    height: 390px;

    z-index: 3;

}


/* =====================================================
   WIDE PHOTO
===================================================== */

.lua-space-photo-wide {

    top: 610px;

    right: 10%;

    width: 55%;

    height: 470px;

    z-index: 4;

}


/* =====================================================
   IMAGE CAPTION
===================================================== */

.lua-space-photo-caption {

    position: absolute;

    left: 22px;

    right: 22px;

    bottom: 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: white;

    z-index: 2;

}


.lua-space-photo-caption::before {

    content: "";

    position: absolute;

    inset: -60px -25px -20px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.55)
        );

    z-index: -1;

}


.lua-space-photo-caption span {

    font-size: 8px;

    letter-spacing: .2em;

}


.lua-space-photo-caption p {

    margin: 0;

    font-size: 10px;

    letter-spacing: .08em;

}


/* =====================================================
   NOTE
===================================================== */

.lua-space-note {

    position: absolute;

    left: 0;

    top: 650px;

    width: 25%;

    padding: 35px 10px 30px 0;

}


.lua-space-note-line {

    display: block;

    width: 55px;

    height: 1px;

    margin-bottom: 28px;

    background: var(--burgundy);

}


.lua-space-note p {

    max-width: 240px;

    margin: 0 0 35px;

    font-family:
        'Playfair Display',
        Georgia,
        serif;

    font-size: 21px;

    line-height: 1.45;

}


.lua-space-note-number {

    font-size: 8px;

    letter-spacing: .22em;

    opacity: .45;

}


/* =====================================================
   DECORATIVE SCRIPT
===================================================== */

.lua-space-script {

    position: absolute;

    left: 3%;

    bottom: 20px;

    display: flex;

    align-items: center;

    gap: 20px;

    transform: rotate(-8deg);

    color: var(--burgundy);

}


.lua-space-script span {

    font-family:
        'Playfair Display',
        Georgia,
        serif;

    font-style: italic;

    font-size: 22px;

}


.lua-space-script i {

    font-size: 11px;

    font-style: normal;

}


/* =====================================================
   REVEAL
===================================================== */

.lua-space .reveal {

    opacity: 0;

    transform:
        translateY(70px)
        scale(.97);

    transition:
        opacity .9s ease,
        transform 1s
        cubic-bezier(.2,.7,.2,1);

}


.lua-space .reveal.is-visible {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);

}


/* =====================================================
   MAIN IMAGE DELAY
===================================================== */

.lua-space-photo-main {

    transition-delay: .05s !important;

}


.lua-space-photo-small {

    transition-delay: .18s !important;

}


.lua-space-note {

    transition-delay: .3s !important;

}


.lua-space-photo-wide {

    transition-delay: .42s !important;

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:1000px) {

    .lua-space {

        padding:
            110px 5vw
            130px;

    }


    .lua-space-heading {

        grid-template-columns:
            1fr 1.5fr;

    }


    .lua-space-heading > p {

        grid-column: 2;

    }


    .lua-space-gallery {

        min-height: 1000px;

    }


    .lua-space-photo-main {

        left: 0;

        width: 68%;

        height: 600px;

    }


    .lua-space-photo-small {

        width: 32%;

        height: 330px;

    }


    .lua-space-photo-wide {

        width: 62%;

        right: 0;

        top: 570px;

        height: 400px;

    }


    .lua-space-note {

        width: 30%;

        top: 620px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:700px) {

    .lua-space {

        padding:
            90px 20px
            100px;

    }


    .lua-space-heading {

        display: block;

        margin-bottom: 60px;

    }


    .lua-space-number {

        margin-bottom: 45px;

    }


    .lua-space-heading-main h2 {

        font-size: 68px;

    }


    .lua-space-heading > p {

        margin-top: 40px;

        max-width: 310px;

        font-size: 11px;

    }


    .lua-space-gallery {

        min-height: auto;

        display: flex;

        flex-direction: column;

        gap: 25px;

    }


    .lua-space-photo {

        position: relative;

        inset: auto;

        width: 100%;

        border-radius: 18px;

    }


    .lua-space-photo-main {

        height: 480px;

        order: 1;

    }


    .lua-space-photo-small {

        width: 72%;

        height: 320px;

        align-self: flex-end;

        order: 2;

    }


    .lua-space-note {

        position: relative;

        inset: auto;

        width: 100%;

        padding: 30px 10px;

        order: 3;

    }


    .lua-space-photo-wide {

        width: 100%;

        height: 350px;

        order: 4;

    }


    .lua-space-script {

        position: relative;

        left: auto;

        bottom: auto;

        margin: 20px auto 0;

        width: fit-content;

        order: 5;

    }

}
/* =====================================================
   MENU
===================================================== */

.lua-menu-new{

    --burgundy:#651F24;
    --cream:#F4EBDD;
    --paper:#FAF7F1;
    --dark:#241B18;

    background:var(--cream);

    color:var(--dark);

    padding:150px 0 130px;

    overflow:hidden;

}


/* =========================================================
   INTRO
========================================================= */

.lua-menu-intro{

    max-width:900px;

    margin:0 auto 90px;

    padding:0 30px;

    text-align:center;

}

.lua-menu-intro > span{

    font-size:9px;

    letter-spacing:.3em;

    color:var(--burgundy);

}

.lua-menu-intro h2{

    margin:25px 0 30px;

    font-family:Georgia,serif;

    font-size:clamp(60px,9vw,120px);

    font-weight:400;

    line-height:.8;

    letter-spacing:-.05em;

}

.lua-menu-intro h2 i{

    color:var(--burgundy);

}

.lua-menu-intro p{

    max-width:500px;

    margin:auto;

    font-size:13px;

    line-height:1.9;

    opacity:.7;

}


/* =========================================================
   MARQUEE
========================================================= */

.lua-menu-marquee{

    width:100%;

    overflow:hidden;

    border-top:1px solid rgba(36,27,24,.18);

    border-bottom:1px solid rgba(36,27,24,.18);

    padding:22px 0;

    margin-bottom:100px;

}

.lua-menu-track{

    display:flex;

    align-items:center;

    width:max-content;

    white-space:nowrap;

    animation:
        luaMenuMarquee 32s linear infinite;

}

.lua-menu-track button{

    border:0;

    background:none;

    padding:0 28px;

    font-family:Georgia,serif;

    font-size:25px;

    color:var(--dark);

    cursor:pointer;

    transition:.3s;

}

.lua-menu-track button:hover{

    color:var(--burgundy);

}

.lua-menu-track button.active{

    color:var(--burgundy);

    font-style:italic;

}

.lua-menu-track b{

    font-size:13px;

    font-weight:400;

    color:var(--burgundy);

}

.lua-menu-marquee:hover
.lua-menu-track{

    animation-play-state:paused;

}

@keyframes luaMenuMarquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}


/* =========================================================
   MENU DISPLAY
========================================================= */

.lua-menu-display{

    max-width:1250px;

    margin:auto;

    padding:0 30px;

    display:grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap:80px;

    align-items:start;

}


/* =========================================================
   IMAGE
========================================================= */

.lua-menu-image{

    height:650px;

    position:relative;

    overflow:hidden;

    background:#ddd;

}

.lua-menu-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:

        transform 1.2s
        cubic-bezier(.2,.7,.2,1),

        opacity .5s;

}

.lua-menu-image:hover img{

    transform:scale(1.05);

}

.lua-menu-image-overlay{

    position:absolute;

    left:25px;

    bottom:25px;

    padding:10px 14px;

    background:rgba(255,255,255,.9);

    backdrop-filter:blur(10px);

}

.lua-menu-image-overlay span{

    font-size:9px;

    letter-spacing:.2em;

}


/* =========================================================
   LIST
========================================================= */

.lua-menu-list-area{

    padding-top:20px;

}

.lua-menu-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding-bottom:25px;

    border-bottom:
        1px solid
        rgba(36,27,24,.2);

}

.lua-menu-index{

    display:inline-block;

    margin-right:18px;

    color:var(--burgundy);

    font-size:9px;

}

.lua-menu-title{

    font-family:Georgia,serif;

    font-size:27px;

}


/* =========================================================
   CONTROLS
========================================================= */

.lua-menu-controls{

    display:flex;

    gap:8px;

}

.lua-menu-controls button{

    width:42px;

    height:42px;

    border:1px solid rgba(36,27,24,.3);

    background:transparent;

    cursor:pointer;

    font-size:17px;

    transition:.3s;

}

.lua-menu-controls button:hover{

    background:var(--burgundy);

    color:#fff;

    border-color:var(--burgundy);

}


/* =========================================================
   ITEMS
========================================================= */

.lua-menu-items{

    margin-top:10px;

}

.lua-menu-item{

    display:flex;

    align-items:baseline;

    justify-content:space-between;

    gap:20px;

    padding:19px 0;

    border-bottom:
        1px solid
        rgba(36,27,24,.12);

    opacity:0;

    transform:translateY(18px);

    animation:
        luaItemIn .5s
        forwards;

}

@keyframes luaItemIn{

    to{

        opacity:1;

        transform:none;

    }

}

.lua-menu-item-name{

    font-size:13px;

}

.lua-menu-item-price{

    color:var(--burgundy);

    font-size:11px;

    white-space:nowrap;

}


/* =========================================================
   HINT
========================================================= */

.lua-menu-hint{

    margin-top:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    font-size:8px;

    letter-spacing:.25em;

    opacity:.5;

}

.lua-menu-hint span{

    width:40px;

    height:1px;

    background:currentColor;

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .lua-menu-display{

        grid-template-columns:1fr;

        gap:50px;

    }

    .lua-menu-image{

        height:550px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .lua-menu-new{

        padding:90px 0;

    }

    .lua-menu-intro{

        margin-bottom:60px;

    }

    .lua-menu-intro h2{

        font-size:60px;

    }

    .lua-menu-marquee{

        margin-bottom:60px;

        padding:18px 0;

    }

    .lua-menu-track{

        animation-duration:22s;

    }

    .lua-menu-track button{

        padding:0 20px;

        font-size:19px;

    }

    .lua-menu-display{

        padding:0 20px;

    }

    .lua-menu-image{

        height:420px;

    }

    .lua-menu-title{

        font-size:21px;

    }

    .lua-menu-item{

        padding:15px 0;

    }

    .lua-menu-item-name{

        font-size:12px;

    }

}


/* =====================================================
   FOOD
===================================================== */

.lua-food{
    background:var(--dark);

    color:#fff;

    padding:150px 0 160px;

    overflow:hidden;
}

.food-top{
    padding:0 7vw;

    display:flex;

    justify-content:space-between;
    align-items:flex-end;

    margin-bottom:80px;
}

.food-top h2{
    text-align:right;
}

.food-top h2 i{
    color:#D7B2A6;
}

.food-track{
    display:flex;

    gap:30px;

    padding-left:7vw;

    width:max-content;

    animation:none;
}

.food-card{
    width:430px;

    flex-shrink:0;
}

.food-image{
    height:540px;

    overflow:hidden;
}

.food-image img{
    transition:
        transform 1s cubic-bezier(.2,.7,.2,1);
}

.food-card:hover .food-image img{
    transform:scale(1.07);
}

.food-info{
    padding:20px 0;
}

.food-info span{
    font-size:8px;
    letter-spacing:.25em;
    opacity:.6;
}

.food-info h3{
    margin:8px 0;

    font-family:Georgia,serif;

    font-size:25px;

    font-weight:400;
}

.food-info b{
    color:#D7B2A6;

    font-size:11px;
}


/* =====================================================
   MOMENTS
===================================================== */

.lua-moments{
    padding:150px 7vw 180px;
}

.moments-heading{
    margin-bottom:100px;
}

.moments-heading h2{
    margin-top:10px;
}

.moments-grid{
    display:grid;

    grid-template-columns:
    1.15fr .7fr 1fr;

    grid-template-rows:
    350px 500px;

    gap:25px;
}

.moment{
    overflow:hidden;
}

.moment img{
    transition:
        transform 1s cubic-bezier(.2,.7,.2,1);
}

.moment:hover img{
    transform:scale(1.06);
}

.m1{
    grid-column:1;
    grid-row:1/3;
}

.m2{
    grid-column:2;
    grid-row:1;
}

.m3{
    grid-column:3;
    grid-row:1/3;
}

.m4{
    grid-column:2;
    grid-row:2;
}


/* =====================================================
   BOOKING
===================================================== */

.lua-booking-section{
    height:750px;

    position:relative;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.booking-bg{
    position:absolute;
    inset:0;
}

.booking-bg img{
    transform:scale(1.1);
}

.booking-overlay{
    position:absolute;
    inset:0;

    background:rgba(45,20,17,.65);
}

.booking-content{
    position:relative;

    text-align:center;
}

.booking-content > span{
    font-size:10px;
    letter-spacing:.3em;
}

.booking-content h2{
    margin:25px 0;

    font-family:Georgia,serif;

    font-size:clamp(55px,8vw,110px);

    line-height:.85;

    font-weight:400;
}

.booking-phone{
    display:block;

    margin-bottom:30px;

    font-family:Georgia,serif;

    font-size:25px;
}


/* =====================================================
   FOOTER (PC / DESKTOP)
===================================================== */
.lua-footer {
    background: var(--dark);
    color: #fff;
    /* Dùng padding lề trái/phải trực tiếp ở khung ngoài thay vì margin-left ở các con */
    margin-left: 20px; /* Đã loại bỏ 100px gây vỡ mobile */
    padding: 100px 7vw 0px 100px; 
    box-sizing: border-box;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: .8;
    margin-left: 0; /* Đã loại bỏ 100px gây vỡ mobile */
    margin-bottom: 90px;
    margin-left: 20px; /* Đã loại bỏ 100px gây vỡ mobile */
}

.footer-logo span {
    font-size: 10px;
    letter-spacing: .2em;
    
}

.footer-logo strong {
    font-family: Georgia, serif;
    font-size: 80px;
    font-weight: 400;
    margin-left: 20px; /* Đã loại bỏ 100px gây vỡ mobile */margin-left: 20px; /* Đã loại bỏ 100px gây vỡ mobile */
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-left: 20px; /* Đã loại bỏ 100px gây vỡ mobile */
    gap: 30px;
    padding-bottom: 80px;
    
}

.footer-info div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    
}

.footer-info span {
    font-size: 8px;
    letter-spacing: .25em;
    opacity: .5;
}

.footer-info a {
    font-family: Georgia, serif;
    font-size: 20px;
    margin-left: 20px; /* Đã loại bỏ 100px gây vỡ mobile */
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    font-size: 8px;
    letter-spacing: .15em;
    margin-left: 0; /* Đã loại bỏ 100px gây vỡ mobile */
    opacity: .5;
    margin-left: 20px; /* Đã loại bỏ 100px gây vỡ mobile */
}

/* =====================================================
   FOOTER MOBILE (Màn hình dưới 900px)
===================================================== */
@media (max-width: 900px) {
    .lua-footer {
        /* Chuyển thụt lề trái về 20px vừa vặn với màn hình điện thoại */
        padding: 60px 20px 30px 20px !important; 
    }

    .footer-logo {
        margin-bottom: 45px;
    }

    .footer-logo strong {
        /* Thu nhỏ font chữ logo để không tràn lề */
        font-size: 46px; 
    }

    .footer-info {
        /* Chuyển 3 cột thành 1 cột xếp chồng lên nhau trên điện thoại */
        grid-template-columns: 1fr; 
        gap: 35px;
        padding-bottom: 50px;
    }
}

/* =====================================================
   FLOATING BUTTONS
===================================================== */

.lua-floating{
    position:fixed;

    right:22px;
    bottom:25px;

    display:flex;
    flex-direction:column;

    gap:12px;

    z-index:999999;
}

.lua-floating a{
    width:55px;
    height:55px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 10px 30px rgba(0,0,0,.22);

    transition:.35s;

    position:relative;
}

.float-map{
    background:#fff;
}

.float-map svg{
    width:25px;
    fill:#d62828;
}

.float-zalo{
    background:#0068ff;
    color:#fff;

    font-size:25px;
    font-weight:700;
}

.lua-floating a:hover{
    transform:scale(1.12);
}

.lua-floating a span{
    position:absolute;

    right:68px;

    background:var(--dark);
    color:#fff;

    padding:8px 12px;

    border-radius:4px;

    font-size:10px;

    white-space:nowrap;

    opacity:0;

    pointer-events:none;

    transform:translateX(10px);

    transition:.3s;
}

.lua-floating a:hover span{
    opacity:1;
    transform:none;
}
/*.lua-facebook svg {*/
    
/*    width: 25px;*/
/*    height: 25px;*/
/*    opacity: 1 !important;*/
/*    fill: #1877F2;*/
/*    color: #fff;*/
/*}*/
.lua-facebook {
    opacity: 1 !important;
    filter: none !important;

    background: #1877F2 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 50%;
}

.lua-facebook svg {
    width: 25px;
    height: 25px;

    fill: #fff !important;
    color: #fff !important;

    opacity: 1 !important;
    filter: none !important;

    display: block;
}

/* =====================================================
   REVEAL
===================================================== */

.reveal,
.reveal-left,
.reveal-right,
.reveal-up{
    opacity:0;

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.2,.7,.2,1);
}

.reveal{
    transform:translateY(60px);
}

.reveal-left{
    transform:translateX(-80px);
}

.reveal-right{
    transform:translateX(80px);
}

.reveal-up{
    transform:translateY(80px);
}

.reveal.show{
    opacity:1;
    transform:none;
}

.reveal-left.show,
.reveal-right.show,
.reveal-up.show{
    opacity:1;
    transform:none;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.lua-mobile-menu{
    display:none;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:900px){

    .lua-nav{
        display:none;
    }

    .lua-booking{
        margin-left:auto;
        margin-right:20px;
    }

    .lua-menu-toggle{
        display:flex;

        width:40px;
        height:40px;

        background:none;
        border:0;

        flex-direction:column;

        justify-content:center;
        gap:6px;

        cursor:pointer;
    }

    .lua-menu-toggle span{
        display:block;

        width:25px;
        height:1px;

        background:currentColor;
    }

    .lua-mobile-menu{
        position:fixed;

        inset:0;

        background:var(--burgundy);

        color:#fff;

        z-index:9998;

        display:flex;

        flex-direction:column;

        justify-content:center;

        padding:10vw;

        gap:25px;

        opacity:0;
        visibility:hidden;

        transform:translateY(-20px);

        transition:.4s;
    }

    .lua-mobile-menu.open{
        opacity:1;
        visibility:visible;
        transform:none;
    }

    .lua-mobile-menu a{
        font-family:Georgia,serif;

        font-size:38px;
    }

    .lua-space-grid{
        grid-template-columns:1fr;
    }

    .space-image-large{
        height:550px;
    }

    .space-image-small{
        margin-top:0;
        width:65%;
        margin-left:auto;
    }

    .space-image-wide{
        width:100%;
    }

    .space-text{
        padding-top:0;
        max-width:600px;
    }

    .menu-list{
        grid-template-columns:1fr;
    }

    .food-card{
        width:350px;
    }

    .food-image{
        height:450px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:600px){

    .lua-header{
        height:70px;
        padding:0 18px;
    }

    .lua-logo strong{
        font-size:24px;
    }

    .lua-booking{
        display:none;
    }

    .lua-hero{
        min-height:650px;
        height:82vh;
    }

    .lua-hero-content{
        left:22px;
        bottom:100px;
    }

    .lua-hero h1{
        font-size:80px;
    }

    .lua-hero h1 span{
        margin-left:35px;
    }

    .lua-space,
    .lua-menu-section,
    .lua-moments{
        padding:90px 20px;
    }

    .lua-space-heading{
        gap:15px;
        margin-bottom:55px;
    }

    .lua-space h2,
    .menu-heading h2,
    .moments-heading h2{
        font-size:55px;
    }

    .space-image-large{
        height:430px;
    }

    .space-image-small{
        width:85%;
        height:330px;
    }

    .space-image-wide{
        height:330px;
    }

    .space-text{
        font-size:13px;
    }

    .menu-categories{
        justify-content:flex-start;

        flex-wrap:nowrap;

        overflow-x:auto;

        padding-bottom:10px;

        margin-bottom:50px;

        scrollbar-width:none;
    }

    .menu-categories::-webkit-scrollbar{
        display:none;
    }

    .menu-categories button{
        flex-shrink:0;
    }

    .menu-group-title{
        font-size:22px;
    }

    .menu-list div{
        font-size:12px;
        padding:15px 0;
    }

    .food-top{
        padding:0 20px;

        display:block;

        margin-bottom:50px;
    }

    .food-top h2{
        margin-top:40px;
        text-align:left;
    }

    .food-track{
        padding-left:20px;
        gap:15px;

        overflow-x:auto;

        width:100%;

        scrollbar-width:none;
    }

    .food-track::-webkit-scrollbar{
        display:none;
    }

    .food-card{
        width:290px;
    }

    .food-image{
        height:370px;
    }

    .moments-grid{
        grid-template-columns:1fr 1fr;

        grid-template-rows:
        280px 280px 350px;

        gap:10px;
    }

    .m1{
        grid-column:1/3;
        grid-row:1;
    }

    .m2{
        grid-column:1;
        grid-row:2;
    }

    .m3{
        grid-column:2;
        grid-row:2/4;
    }

    .m4{
        grid-column:1;
        grid-row:3;
    }

    .lua-booking-section{
        height:620px;
    }

    .booking-content h2{
        font-size:58px;
    }

    .lua-footer{
        padding:75px 20px 25px;
    }

    .footer-logo{
        margin-bottom:60px;
    }

    .footer-logo strong{
        font-size:65px;
    }

    .footer-info{
        grid-template-columns:1fr;

        gap:35px;

        padding-bottom:60px;
    }

    .lua-floating{
        right:14px;
        bottom:18px;

        gap:9px;
    }

    .lua-floating a{
        width:48px;
        height:48px;
    }

    .lua-floating a span{
        display:none;
    }

}
/* =========================================
   MENU MARQUEE
========================================= */

.lua-menu-marquee{

    width:100%;

    overflow:hidden;

    border-top:1px solid rgba(36,27,24,.18);
    border-bottom:1px solid rgba(36,27,24,.18);

    margin:70px 0 80px;

    padding:22px 0;

    position:relative;

}


/* TRACK */

.lua-menu-marquee-track{

    display:flex;

    align-items:center;

    width:max-content;

    white-space:nowrap;

    animation:
        luaMenuRun 28s linear infinite;

}


/* TEXT */

.lua-menu-marquee-track span{

    font-family:Georgia,serif;

    font-size:25px;

    font-weight:400;

    letter-spacing:.04em;

    padding:0 28px;

    color:var(--dark);

    transition:.3s;

}


/* STAR */

.lua-menu-marquee-track i{

    font-style:normal;

    font-size:15px;

    color:var(--burgundy);

}


/* ANIMATION */

@keyframes luaMenuRun{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}


/* HOVER */

.lua-menu-marquee:hover
.lua-menu-marquee-track{

    animation-play-state:paused;

}


.lua-menu-marquee:hover
.lua-menu-marquee-track span{

    color:var(--burgundy);

}


/* MOBILE */

@media(max-width:600px){

    .lua-menu-marquee{

        margin:50px -20px 55px;

        width:calc(100% + 40px);

        padding:18px 0;

    }

    .lua-menu-marquee-track{

        animation-duration:20s;

    }

    .lua-menu-marquee-track span{

        font-size:19px;

        padding:0 20px;

    }

    .lua-menu-marquee-track i{

        font-size:11px;

    }

}







/* =====================================================
   THE LÚA — GLOBAL RESPONSIVE / STABLE LAYOUT
===================================================== */

/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;

    overflow-x: hidden;

    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;

    font-family: 'Be Vietnam Pro', Arial, sans-serif;
}


/* =====================================================
   ELEMENTOR GLOBAL FIX
===================================================== */

.elementor,
.elementor-section,
.elementor-container,
.elementor-widget-wrap {
    max-width: 100%;
}

.elementor-section {
    width: 100%;
    max-width: 100%;
}

.elementor-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* Không để widget phá chiều rộng */

.elementor-widget {
    max-width: 100%;
    min-width: 0;
}

.elementor-widget-container {
    max-width: 100%;
}


/* =====================================================
   IMAGE STABILITY
===================================================== */

img,
video,
iframe {
    max-width: 100%;
}

img {
    height: auto;
}


/* Không để ảnh vượt viewport */

.elementor img {
    max-width: 100%;
}


/* =====================================================
   TEXT STABILITY
===================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    max-width: 100%;
    overflow-wrap: break-word;
}


/* Heading tự co theo màn hình */

h1 {
    font-size: clamp(42px, 6vw, 100px);
}

h2 {
    font-size: clamp(36px, 5vw, 80px);
}

h3 {
    font-size: clamp(25px, 3vw, 48px);
}


/* =====================================================
   CONTAINER CHUNG
===================================================== */

.lua-container {
    width: min(1400px, 88vw);

    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   SECTION CHUNG
===================================================== */

section {
    width: 100%;
    max-width: 100%;
    position: relative;
}


/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 1200px) {

    .elementor-container {
        max-width: 1400px;
    }

}


/* =====================================================
   LAPTOP
===================================================== */

@media (min-width: 769px) and (max-width: 1199px) {

    .elementor-container {
        width: 92%;
        max-width: 1100px;
    }

    .lua-container {
        width: 90%;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (min-width: 601px) and (max-width: 768px) {

    .elementor-container {
        width: 90%;
    }

    .lua-container {
        width: 90%;
    }

    section {
        overflow: hidden;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .elementor-container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .lua-container {
        width: calc(100% - 40px);
    }

    section {
        overflow: hidden;
    }


    /* Không cho text làm tràn màn hình */

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a,
    span {
        max-width: 100%;
        overflow-wrap: break-word;
    }


    /* Button */

    .elementor-button {
        max-width: 100%;
    }


    /* Row */

    .elementor-row {
        width: 100%;
        max-width: 100%;
    }

}


/* =====================================================
   PREVENT HORIZONTAL OVERFLOW
===================================================== */

.elementor-widget-image,
.elementor-widget-html,
.elementor-widget-text-editor,
.elementor-widget-heading {
    max-width: 100%;
    min-width: 0;
}


/* =====================================================
   FLEX FIX
===================================================== */

.elementor-container,
.elementor-row,
.elementor-widget-wrap {
    min-width: 0;
}


/* Những phần dùng flex */

.lua-space-heading,
.lua-menu-display,
.lua-menu-top,
.lua-menu-item {
    min-width: 0;
}


/* =====================================================
   GRID FIX
===================================================== */

.lua-menu-display,
.lua-space-heading {
    min-width: 0;
}

.lua-menu-display > *,
.lua-space-heading > * {
    min-width: 0;
}


/* =====================================================
   MARQUEE / ANIMATION
===================================================== */

/*
   Các phần chạy ngang được phép vượt container
   nhưng KHÔNG được tạo scrollbar cho toàn web.
*/

.lua-menu-marquee,
.lua-menu-track,
.lua-menu-track {
    max-width: 100%;
}

.lua-menu-marquee {
    overflow: hidden;
}


/* =====================================================
   FIX TRANSFORM
===================================================== */

/*
   Không dùng scale() cho toàn section.
   Chỉ cho phép animation trên phần tử con.
*/

.elementor-section {
    transform-origin: center center;
}


/* =====================================================
   FIX FLOATING ICON
===================================================== */

.lua-floating-icon,
.lua-facebook,
.lua-map {
    position: fixed;

    z-index: 9999;

    max-width: none;
}


/* =====================================================
   SAFE AREA MOBILE
===================================================== */

@supports (padding: env(safe-area-inset-bottom)) {

    .lua-floating-icon {
        bottom:
            calc(20px + env(safe-area-inset-bottom));
    }

}


/* =====================================================
   MOBILE FONT
===================================================== */

@media (max-width: 600px) {

    body {
        font-size: 14px;
    }

    p {
        font-size: 13px;
        line-height: 1.8;
    }

}


/* =====================================================
   VERY SMALL PHONE
===================================================== */

@media (max-width: 380px) {

    .elementor-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .lua-container {
        width: calc(100% - 30px);
    }

}
/* Chỉnh sửa lề Footer trên màn hình điện thoại */
@media (max-width: 700px) {
    .lua-footer {
        /* Giảm padding lề trái/phải xuống 24px thay vì 7vw */
        padding: 60px 24px 30px !important; 
        margin-left: 20px; /* Đã loại bỏ 100px gây vỡ mobile */
    }

    .footer-logo strong {
        /* Thu nhỏ chữ Logo footer trên mobile để không bị vỡ hàng */
        font-size: 48px; 
    }

    .footer-logo {
        margin-bottom: 50px;
    }

    .footer-info {
        gap: 30px;
        padding-bottom: 50px;
    }
}/* End custom CSS */