@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');



@font-face {
    font-family: 'Gotham';
    src:url('../fonts/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



:root {
    --white: #fff;
    --black: #000;
    --green: #35463C;
    --brown:#BB8161;
    --grey:#CDCFD0;
    --primary: #58595B;
    --font-playfair: 'Playfair Display', Arial, sans-serif;
    --font-arial: Arial, sans-serif;
    --font-gotham: 'Gotham', Arial, sans-serif;
}

body {
    font-family: var(--font-arial);
    color: var(--primary);
    font-size: 16px;
}

@media(max-width:991px) {
    body {font-size: 14px;}
}

a {color: inherit; text-decoration: none;}

.cta{
    position: relative;
    overflow: hidden;
    padding: 3px 35px;
   
    background: linear-gradient(135deg, #ad8051, #be9980, #ad8055);
    border: none;
    border-radius: 50px;
    color: #1d2430;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.cta::after{
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
    transition: 0.7s;
}
.cta:hover::after{
    left: 130%;
}


.title {
    font-family:var(--font-playfair);
    font-size: 30px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 25px;
}
.title span {display: block; font-weight: 500; font-family: var(--font-gotham); color: var(--brown); font-size: 10px;}

.introWrp p {font-size: 20px;}
.introWrp p:last-child {margin-bottom: 0;}

@media(max-width:991px) {
    .title {font-size: 24px;}
}

section {
    margin-bottom: clamp(50px, 5.208vw, 100px);
}

.patternBg {
    background: url('../image/patternBg.jpg') repeat;
    background-size: cover;
}


@media(min-width:992px) {
    .container {
        max-width: inherit;
        width: clamp(900px, 92.448vw, 1775px);
    }
    /* main {padding-top: clamp(100px, 11.719vw, 225px);} */
}



/* Header */
header {
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease-in-out, padding 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    padding: 40px 0;
}

header.fixedHeader {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--green);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
    padding: 15px 0;
}



.headWrp {
    border-bottom: 1px solid #b19373;
    position: relative;
    overflow: hidden;
    padding-bottom: 15px
}

header.fixedHeader .headWrp {
    border-bottom: none;
    padding-bottom: 0;
}


.headWrp::before {
    content: "";
    position: absolute;
    left: -100%;
    bottom: 0;
    height: 2px;
    background: #bb8161;
    width: 50%;

    transform-origin: left center;

    animation: shineBorder 2.5s linear;
}

@keyframes shineBorder {
    from {
        left: 0;
    }

    to {
        left: 100%;
    }
}



/* Logo */
.logo-box {
    display: block;
    width: clamp(150px, 12.5vw, 240px);
    transition: all 0.3s ease-in-out;
}

.logo-box img {
    width: 100%;
    height: auto;
    display: block;
}

@media(min-width:991.99px){
    header.fixedHeader .logo-box {
        width: clamp(100px, 7.813vw, 150px);
    }
}

@media(max-width:991.98px){
    header {
        padding: 16px 0;
    }

    header.fixedHeader {
        padding: 12px 0;
    }

    .logo-box {
        width: clamp(72px, 19vw, 100px);
    }

    header.fixedHeader .logo-box {
        width: clamp(64px, 16vw, 84px);
    }

    .headWrp {
        padding-bottom: 14px;
        border-bottom-color: rgba(177, 147, 115, 0.35);
    }

    header.fixedHeader .headWrp {
        padding-bottom: 0;
        border-bottom: none;
    }

    header.fixedHeader {
        backdrop-filter: blur(8px);
    }
}


/* Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li:not(:last-child)::after {
    content: "|";
    color: #c78f63;
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
}

.main-nav ul li a {
    color: #bb8161;
    text-decoration: none;
    /*font-size:16px;*/
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    position: relative;
}

.main-nav ul li a:hover {
    color: #dba57a;
}


/* Active underline */
.main-nav ul li.active a {color: #dba57a;}
.main-nav ul li.active a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom:-20px;
    width: 100%;
    height: 3px;
    background: #dba57a;
}

.main-nav::before {
    position: absolute;
    left: -40%;
    width: 40%;
    background: #efd27a;
    z-index: 2;
    pointer-events: none;
    animation: 3.5s linear forwards shineBorder;
}

.main-nav::after {
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 1320px !important;
    background: #b19373;
    z-index: 1;
}

@media(min-width:991.99px){
    .fixedHeader .main-nav ul li.active a::before {bottom: -5px;}
}


/* Footer */
.footer {
    /* background-image: url('../image/bg.jpg'); */
    padding: clamp(50px, 5.208vw, 100px) 0;
    color: #fff;
}

.footer-logo img {
    max-width: 180px;
    width: 100%;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-contact p {
    margin: 0 0 6px;
    line-height: 1.6;
    color: #fff;
    font-size: 16PX;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-right {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    opacity: .8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.footer-social img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

@media(max-width:991px) {
    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-social {
        justify-content: center;
    }
}


/* =========================
   HAMBURGER (DESKTOP HIDE)
========================= */

.nav-close {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1.5px solid rgba(199, 143, 99, 0.45);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #c78f63;
    border-radius: 2px;
    transition: width 0.25s ease;
}

.menu-toggle span:nth-child(2) {
    width: 14px;
    align-self: flex-start;
    margin-left: 12px;
}

.menu-toggle:hover {
    background: rgba(199, 143, 99, 0.1);
    border-color: #c78f63;
}

.menu-toggle:hover span {
    width: 20px;
}


/* =========================
   MOBILE MENU
========================= */

@media(min-width:992px) {
    .header-nav {
        margin-left: 0;
        order: unset;
    }

    .header-logo,
    .header-logo--right {
        order: unset;
    }
}

@media (max-width: 991px) {

    /* HEADER ALIGNMENT */


 
    .header-logo--right {
    
        position: relative;
    }

    .header-logo--right::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 32px;
        background: linear-gradient(
            to bottom,
            transparent,
            rgba(187, 129, 97, 0.55) 20%,
            rgba(187, 129, 97, 0.55) 80%,
            transparent
        );
    }

    .header-nav {
     
        order: 3;
        margin-left: auto;
    }

    /* HAMBURGER */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        z-index: 1001;
        margin-left: 0;
    }

    /* MOBILE NAV OVERLAY */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(160deg, #0f2218 0%, #173329 60%, #1c3d2e 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        overflow: hidden;
        padding: 0;
    }

    .main-nav::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(199, 143, 99, 0.12) 0%, transparent 70%);
        pointer-events: none;
        border-radius: 50%;
    }

    .main-nav::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(199, 143, 99, 0.08) 0%, transparent 70%);
        pointer-events: none;
        border-radius: 50%;
    }

    .main-nav.active {
        right: 0;
    }

    /* NAV HEADER ROW */
    .nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px;
        min-height: 76px;
    }

    .nav-brand {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
    }

    .nav-logo-link {
        display: block;
        line-height: 0;
        flex-shrink: 0;
    }

    .nav-logo {
        height: 40px;
        width: auto;
        display: block;
        opacity: 0.92;
        filter: brightness(1.08);
    }

    .nav-brand-divider {
        flex-shrink: 0;
        width: 1px;
        height: 34px;
        background: linear-gradient(
            to bottom,
            transparent,
            rgba(199, 143, 99, 0.5) 20%,
            rgba(199, 143, 99, 0.5) 80%,
            transparent
        );
    }

    /* NAV CLOSE BUTTON */
    .nav-close {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.06);
        border: 1.5px solid rgba(199, 143, 99, 0.35);
        border-radius: 50%;
        cursor: pointer;
        z-index: 1100;
        transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        flex-shrink: 0;
    }

    .nav-close:hover {
        background: rgba(199, 143, 99, 0.15);
        border-color: #c78f63;
        transform: rotate(90deg);
    }

    .nav-close span {
        display: block;
        width: 16px;
        height: 1.5px;
        background: #c78f63;
        border-radius: 2px;
    }

    .nav-close span:first-child {
        transform: translateY(0.75px) rotate(45deg);
    }

    .nav-close span:last-child {
        transform: translateY(-0.75px) rotate(-45deg);
    }

    /* DIVIDER */
    .nav-divider {
        height: 1px;
        margin: 0 24px 10px;
        background: linear-gradient(to right, transparent, rgba(199, 143, 99, 0.35), transparent);
    }

    /* MENU LIST */
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 20px 0;
        text-align: left;
        width: 100%;
    }

    .main-nav ul li {
        text-align: left;
        padding: 0 28px;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .main-nav.active ul li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
    .main-nav.active ul li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.22s; }
    .main-nav.active ul li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.29s; }
    .main-nav.active ul li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.36s; }

    .main-nav ul li::after {
        display: none;
    }

    .main-nav ul li.active a::before {
        display: none;
    }

    .main-nav ul li a {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 16px;
        font-family: Montserrat, sans-serif;
        font-weight: 600;
        color: rgba(237, 210, 178, 0.75);
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none;
        padding: 16px 0;
        border-bottom: 1px solid rgba(199, 143, 99, 0.12);
        transition: color 0.25s ease, padding-left 0.25s ease;
        position: relative;
    }

    .main-nav ul li:last-child a {
        border-bottom: none;
    }

    .main-nav ul li a:hover,
    .main-nav ul li.active a {
        color: #c78f63;
        padding-left: 6px;
        border-bottom: 1px solid #c78f63;
    }

    @media (max-width: 380px) {
        .header-logo--right {
            margin-left: 10px;
            padding-left: 10px;
        }

        .header-logo--right::before {
            height: 26px;
        }

        .logo-box {
            width: clamp(64px, 17vw, 80px);
        }

        .nav-logo {
            height: 34px;
        }

        .nav-brand-divider {
            height: 28px;
        }

        .nav-brand {
            gap: 10px;
        }
    }
}