        :root {
            --bg: #ffffff;
            --text: #111111;
            --brand-primary: #C59A3A;
            --muted: #6f6f6f;
            --line: #e9e9e9;
            --soft: #f7f7f7;
            --accent: #1b1b1b;
            --radius: 24px;
            --shadow: 0 18px 50px rgba(0, 0, 0, .06);
            --container: 1200px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .btn-brand {
            background: var(--brand-primary);
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
        }

        .btn-brand:hover {
            background: var(--brand-primary);
        }


        /* Full screen header */
        .hero-header {
            height: 100vh;
            overflow: hidden;
        }

        /* Carousel takes full height */
        .hero-header .carousel,
        .hero-header .carousel-inner,
        .hero-header .carousel-item {
            height: 100vh;
        }

        /* Images cover screen */
        .hero-header .carousel-item img {
            width: 100%;
            height: 100vh;
            object-fit: cover;
        }

        /* Caption styling */
        .hero-header .carousel-caption {
            bottom: 50%;
            transform: translateY(50%);
            text-align: center;
        }

        .hero-header .carousel-caption h1 {
            font-size: 3rem;
            font-weight: 700;
        }

        .hero-header .carousel-caption p {
            font-size: 1.2rem;
        }

        .carousel-item::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.35);
            z-index: 1;
        }

        .carousel-caption {
            z-index: 2;
        }

        .hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
}

.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-primary);
}

.nav-btn.desktop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* TOGGLE BUTTON */
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
}

/* MOBILE MENU */
.mobile-menu {
    width: 90%;
    max-width: var(--container);
    margin: 14px auto 0;
    background: rgba(17, 17, 17, 0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 18px;
    display: none;
    flex-direction: column;
    gap: 14px;
}

.mobile-menu a {
    color: #fff;
    font-weight: 500;
    padding: 10px 6px;
}

.mobile-menu .mobile-btn {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
    display: inline-flex;
}

.mobile-menu.active {
    display: flex;
}

/* TOGGLE ANIMATION */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE */
@media (max-width: 860px) {
    .nav-links,
    .desktop-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .brand span {
        font-size: 1rem;
    }
}
/* NAVBAR STICKY STATE */
.hero-nav.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

/* change link color when background becomes white */
.hero-nav.scrolled .nav-links a{
    color: var(--text);
}

.hero-nav.scrolled .nav-links a:hover{
    color: var(--brand-primary);
}

.hero-nav.scrolled .brand{
    color: var(--text);
}

/* toggle color */
.hero-nav.scrolled .menu-toggle span{
    background: var(--text);
}



/* ABOUT SECTION */

.about-section{
    padding:120px 0;
    /* background:var(--soft); */
    background: var(--bg);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* IMAGE */

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 2px solid var(--brand-primary);
}

.about-image img{
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .6s ease, filter .4s ease;
}

/* subtle zoom effect */
.about-image:hover img{
    transform: scale(1.05);
}

/* luxury overlay */
.about-image::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 40%,
        rgba(0,0,0,0.25)
    );
    border-radius: var(--radius);
}

/* CONTENT */

.section-title{
    font-size:2.6rem;
    font-weight:700;
    margin-bottom:20px;
}

.about-intro{
    font-weight:500;
    color:var(--muted);
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:20px;
}

/* FEATURES */

.about-features{
    margin-top:30px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.about-feature{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:500;
}

.feature-icon{
    color:var(--brand-primary);
    font-weight:700;
}

/* MOBILE */

@media(max-width:900px){

    .about-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

}

/* GALLERY */

.gallery{
    padding:10px 0;
        background: var(--soft);
}

.section-head{
    text-align:center;
    max-width:600px;
    margin:0 auto 60px;
}

.section-head h2{
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:10px;
}

.section-head p{
    color:var(--muted);
}

/* GRID */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

/* ITEM */

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:var(--radius);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:transform .5s ease;
}

/* HOVER */

.gallery-item:hover img{
    transform:scale(1.08);
}

/* OVERLAY */

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 40%,
        rgba(0,0,0,.6)
    );
    display:flex;
    align-items:flex-end;
    padding:20px;
    opacity:0;
    transition:.4s;
}

.gallery-overlay span{
    color:#fff;
    font-weight:600;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

/* RESPONSIVE */

@media(max-width:900px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item img{
    height:260px;
}

}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .5s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .6));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: .4s;
    pointer-events: none;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-footer {
    text-align: center;
    margin-top: 50px;
}

.image-preview {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    padding: 20px;
}

.image-preview.active {
    opacity: 1;
    visibility: visible;
}

.image-preview img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.preview-close {
    position: absolute;
    top: 24px;
    right: 30px;
    font-size: 42px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
}


.menu{
    padding:50px 0;
    background:var(--bg);
}

/* GRID */

.menu-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.menu-card{
    background:#fff;
    padding:40px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

/* CATEGORY */

.menu-category{
    font-size:1.5rem;
    margin-bottom:25px;
    font-weight:700;
}

/* MENU LIST */

.menu-list{
    list-style:none;
}

.menu-list li{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid var(--line);
}

.menu-list li:last-child{
    border-bottom:none;
}

.menu-price{
    color:var(--brand-primary);
    font-weight:600;
}

/* FOOTER */

.menu-footer{
    text-align:center;
    margin-top:50px;
}

/* RESPONSIVE */

@media(max-width:900px){

.menu-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.menu-grid{
    grid-template-columns:1fr;
}

}


/* CTA SECTION */

.cta{
    position:relative;
    padding:140px 0;
    text-align:center;
    color:#fff;

    background:
    url('/assets/image/gallary/setup-1.jpeg') center/cover no-repeat;

    background-attachment:fixed;
}

/* overlay */

.cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

/* content */

.cta-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.cta h2{
    font-size:2.6rem;
    font-weight:700;
    margin-bottom:20px;
}

.cta p{
    color:#ddd;
    margin-bottom:35px;
}

/* buttons */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* outline button */

.btn-outline{
    padding:14px 28px;
    border-radius:50px;
    border:2px solid #fff;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}


/* FOOTER */

.footer{
    background:#111;
    color:#fff;
    padding:80px 0 30px;
}

/* GRID */

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

/* BRAND */

.footer-brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-brand img{
    width:40px;
}

/* TEXT */

.footer-col p{
    color:#bbb;
    margin-bottom:10px;
}

/* LINKS */

.footer-col h4{
    margin-bottom:20px;
}

.footer-col a{
    display:block;
    margin-bottom:10px;
    color:#bbb;
    transition:.3s;
}

.footer-col a:hover{
    color:var(--brand-primary);
}

/* SOCIAL */

.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#222;
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--brand-primary);
}

/* BOTTOM */

.footer-bottom{
    border-top:1px solid #333;
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#888;
}

/* RESPONSIVE */

@media(max-width:900px){

.footer-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.footer{
    text-align:center;
}

.footer-social{
    justify-content:center;
}

}