.elementor-1757 .elementor-element.elementor-element-2d6f0179{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-6fbad98 */body {
  overscroll-behavior-y: none;
}

/* Global Header */
#site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 20px;
    z-index: 999;
    transition: background-color 0.3s, box-shadow 0.3s;
    background-color: transparent;
}

.header.scrolled {
    background-color: #fff !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

/* Left: Logo */
.header-left {
    display: flex;
    align-items: center;
}

/* Center: Navigation */
.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* Right: Icons */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigation Menu */
.header-nav {
    display: flex;
    gap: 30px;
}


.header-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
}

.header-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c2a88b;
    transition: width 0.3s ease;
}

/* Hover effect */
.header-nav .nav-link:hover::after {
    width: 100%;
}

/* Active link underline */
.header-nav .nav-link.active::after {
    width: 100%;
}


.header-nav .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.header-nav .nav-link:hover {
    color: #c2a88b;
}

.header.scrolled .nav-link {
    color: #000;
}

/* Burger Menu - hidden desktop, shown mobile */
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-left: 20px;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: background-color 0.3s;
}

.header.scrolled .burger span {
    background-color: #000;
}

/* Logo & Icon logic */
.logo-img {
    height: 50px;
    display: none;
}

.icon-img {
    width: 28px;
    height: 28px;
    display: none;
}

.logo-img.icon-black,
.icon-img.icon-white {
    display: block;
}

.header.scrolled .logo-img.icon-black,
.header.scrolled .icon-img.icon-white {
    display: none;
}

.header.scrolled .logo-img.icon-white,
.header.scrolled .icon-img.icon-black {
    display: block;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
}




/* RESPONSIVE MOBILE */
@media (max-width: 991px) {

    .header-container {
        justify-content: space-between;
    }

    .header-center {
        justify-content: flex-start;
    }

    .header-nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        gap: 20px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .header-nav.show {
        display: flex;
    }

    .burger {
        display: flex;
    }
    .header-nav .nav-link {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}
}

/* DESKTOP Correction */
@media (min-width: 992px) {

    .header-center {
        justify-content: center;
    }

    .burger {
        display: none;
    }

    .header-nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
}/* End custom CSS */