:root {
    --primary-green: #21362C;
    --primary-gold: #CEB472;
    --text-light: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden !important; /* Force no scroll - Full Locking */
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-green);
    color: var(--text-light);
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/FZ Poppins-Italic.ttf') format('truetype');
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/FZ Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/FZ Poppins-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/FZ Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/FZ Poppins-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/FZ Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/FZ Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/FZ Poppins-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SVN Audrey';
    src: url('../fonts/SVN-Audrey.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
.nav-items {
    list-style: none;
    position: relative;
}
.nav-item {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.nav-item a {
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    position: relative;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    gap: 15px;
    transform-origin: right center;
}
body .nav-item a{
    color: rgba(33, 54, 44, 0.50);
}
body .nav-item.active a{
    font-weight: 500;
    color: #21362C;
    opacity: 1;
}
body .nav-item.active a::after{
    background: linear-gradient(90deg, #21362C 0%, rgba(33, 54, 44, 0.00) 100%);
}
body .nav-item a:hover{
    color: #21362C;
}
body.nav-dark .nav-item a{
    color: rgba(255, 255, 255, 0.50);
}
body.nav-dark .nav-item.active a{
    font-weight: 500;
    color: #fff;
}
body.nav-dark .nav-item.active a::after{
    background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}
body.nav-dark .nav-item a:hover{
    color: #FFF;
}
.nav-item a::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.nav-item a:hover {
    color: #fff;
    transform: scale(1.15);
}




body.menu-open {
    overflow: hidden !important;
}
.menu-open .logo-wrapper{    
    visibility: hidden;

}
/* LOAD SCREEN */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader-bg{
    position:absolute;
    inset:0;
    background: linear-gradient(90deg, #21362C 0%, #518A6F 100%);
}

.loader-logo{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* WRAPPER FOR SCROLLTRIGGER PINNING */
#main-wrapper {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   COMMON UI (Fixed Headers, Menus)
   ========================================================================== */
header {
    position: fixed;
    top: 54px;
    z-index: 10001;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 100px);
    align-items: center;
    pointer-events: none;
    /* Let clicks pass through empty areas */
}

.logo-wrapper,
.menu-btn1 {
    pointer-events: auto;
    /* Re-enable clicks */
}

.logo img {
    height: 60px;
}

.menu-btn1 {
    margin-top: 12px;
    margin-right: 55px;
    cursor: pointer;
    width: 40px;
    height: 30px; /* Increased height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content */
    gap: 6px;
    z-index: 10000;
    position: relative;
}


.menu-btn1 span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

.menu-btn1 span:nth-child(1) {
    width: 60%;
    margin-left: auto;
}

.menu-btn1:hover span:nth-child(2) {
    transform: translateX(-5px);
}

body.nav-dark .menu-btn1 span {
    background-color: #fff;
}

.menu-btn2 {
    display: none;
    position: absolute;
    right: 55px;
    top: 80px;
    cursor: pointer;
    width: 40px;
    height: 30px;
    z-index: 4;
}
.menu-btn2.active{
    display:block;
}
.menu-btn2 span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-btn2.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 0px);
}

.menu-btn2.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn2.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, 5px);
}

/* Particle container for menu button */
.menu-btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: visible;
}

.menu-btn-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9998;
    pointer-events: none;
    overflow: hidden;
}

.menu-overlay.active {
    pointer-events: auto;
    /*background: url('../assets/index/bg.png'); */
}

.menu-morph-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-green);
    transform: translate(-50%, -50%);
    transform-origin: center center;
    will-change: width, height;
    z-index: 2;
    overflow: hidden;
}

.menu-background-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.5s ease 0.3s;
}

.menu-overlay.active .menu-background-image {
    opacity: 1;
    background: #17552e;
}

.menu-overlay-image {
    position: absolute;
    inset: 0;
    background-image: url('../assets/index/BACKGROUND 2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease 0.4s;
}

.menu-overlay.active .menu-overlay-image {
    opacity: 0.5;
}

.menu-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease 0.5s, visibility 0.3s ease 0.5s;
}

.menu-overlay.active .menu-content {
    opacity: 1;
    visibility: visible;
}

.menu-left {
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vw;
}

.menu-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s,
    opacity 0.8s ease 0.7s;
}

.menu-overlay.active .menu-logo-wrapper {
    transform: translateY(0);
    opacity: 1;
}

.menu-logo {
    width: 200px;
    height: auto;
    filter: brightness(1.1);
}

.menu-brand-title {
    font-family: 'Poppins';
    font-size: 64px;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.menu-right {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
    margin-left: 50px;
}

.menu-nav {
    width: 100%;
}

.menu-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-nav-list li {
    margin-bottom: 20px;
    transform: translateX(-50px);
    opacity: 0;
    position: relative;
}

.menu-overlay.active .menu-nav-list li {
    animation: slideInMenu 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.menu-nav-list li:nth-child(1) { animation-delay: 0.8s; }
.menu-nav-list li:nth-child(2) { animation-delay: 0.85s; }
.menu-nav-list li:nth-child(3) { animation-delay: 0.9s; }
.menu-nav-list li:nth-child(4) { animation-delay: 0.95s; }
.menu-nav-list li:nth-child(5) { animation-delay: 1s; }
.menu-nav-list li:nth-child(6) { animation-delay: 1.05s; }
.menu-nav-list li:nth-child(7) { animation-delay: 1.1s; }
.menu-nav-list li:nth-child(8) { animation-delay: 1.15s; }
.menu-nav-list li:nth-child(9) { animation-delay: 1.2s; }

@keyframes slideInMenu {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.menu-nav-list a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    letter-spacing: 1px;
    overflow: visible;
}

@media (max-height: 700px) {
    .menu-right{
        margin-top:50px
    }
}

/* Concentric circles icon */
.menu-icon {
    width: 24px;
    height: 24px;
    margin-left: 24px !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

/* Outer ring */
.menu-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-sizing: border-box;
}

/* Middle ring */
.menu-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-sizing: border-box;
}

/* Inner dot - using box-shadow to create the dot */
.menu-icon {
    background: currentColor;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    margin: 0;
}
.menu-nav-list li:first-child .menu-icon{
    opacity: 0.8;
    background: #6B7A8F;
}

.menu-nav-list li:first-child .menu-icon::before,
.menu-nav-list li:first-child .menu-icon::after{
    border-color: #6B7A8F;
}

/* Other items - white color */
.menu-nav-list li:not(:first-child):not(:last-child) .menu-icon {
    background: #fff;
}

/* Hover effects */
.menu-nav-list a:hover {
    color: var(--primary-gold);
    transform: translateX(10px) translateY(-3px);
}

.menu-nav-list a:hover .menu-icon {
    opacity: 1;
    background: var(--primary-gold);
    animation: iconDissolve 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.menu-nav-list a:hover .menu-icon::before,
.menu-nav-list a:hover .menu-icon::after {
    border-color: var(--primary-gold);
}

@keyframes iconDissolve {
    0% {
        opacity: 0.6;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Text wrapper - simple color and fade transition */
.menu-text {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, opacity 0.3s ease;
    font-size: 16px;
    margin-right:10px;
    font-family: "Poppins";
}

.menu-nav-list a::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%) !important;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.menu-nav-list li {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 8px;
}

.menu-nav-list li:hover {
    transform: translateY(-2px);
}

.menu-nav-list li:not(:hover) {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-content {
        flex-direction: column;
    }

    .menu-left,
    .menu-right {
        width: 100%;
        height: 50%;
    }

    .menu-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-brand-title {
        font-size: 48px;
    }

    .menu-logo {
        width: 150px;
    }

    .menu-nav-list a {
        font-size: 20px;
    }
}




