/*!************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/dynamic-navigation/nav.css ***!
  \************************************************************************************************************************************************************************************/
/* #wpadminbar {
    display: none;
}
 */

:root{
    --nav-position: 0;
    --nav-search-input: none;
    --nav-search-input-width: 0px;
    --nav-search-input-opacity: 0;
    /* --search-input-left: calc(100vw + 29px); */
    --search-input-left-icon:-36px;
    --search-display:block;
}

.nav_contain{
    height: 112px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky; /* Make it sticky */
    top: var(--nav-position) !important; /* Stick to the top of the viewport */
    z-index: 1000 !important;
    overflow: visible !important; 
    transition: top 0.6s ease;
    background-color: pink;
}
/* Check and override overflow on parent containers */
body, 
html,
.some-parent-element,
.editor-styles-wrapper,
.editor-styles-wrapper .wp-block,
.editor-styles-wrapper .block-editor-block-list__layout{
    overflow: visible !important;
    position: static !important;
}
/* Ensure parent containers allow sticky behavior */
.block-editor-block-list__block,
.wp-block,
.is-selected {
    overflow: visible !important;
    transform: none !important; /* Disable transforms */
    position: static !important; /* Ensure no conflicting positioning */
}
.nav_contain_content{
    /* height: 48px; */
    width: 80%;
    max-width: 1080px;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.nav_a{
    text-decoration: none;
}
.nav_contain_content a{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.nav_a_text{

    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    cursor: pointer;
}

/* Scroll-up state (navbar visible) */
.nav_contain.scroll-up {
    transform: translateY(0);
}

/* Scroll-down state (navbar hidden) */
.nav_contain.scroll-down {
    transform: translateY(-100%);
}

.nav_a {
    text-decoration: none;
}
.search{
    position: relative;
    display: flex;
    justify-content: right;
    align-items: center;
}
.search_input {

    position: absolute !important;
    left: auto !important;
    right: 0 !important;
    display: var(--nav-search-input);
    width: var(--nav-search-input-width);
    opacity: var(--nav-search-input-opacity);
    height: 48px;
    padding-right: 16px;
    padding-left: 16px;
    gap: 10px;
    border-width: 1px;
    border-radius: 24px;
    border: 1px solid #C0C0C0;
    text-align: left;
    transition: opacity 0.8s ease, width 0.4s ease, left 0.4s ease;
    z-index: 10; /* Ensure the search input goes under the icon */
    position: absolute;
    left: 0; 
    margin-right: 0;
    font-size: 16px;
}
.search_icon {
    position: absolute;
    width: 16px;
    height: 16px;
    cursor: pointer;
    z-index: 1000;
    transition: left 0.5s ease;
    left: var(--search-input-left-icon);
}
#search_results{
    position: absolute;
    top:60px;
    font-size: 16px;
    line-height: 38px;
    width: 347px;
    opacity: var(--nav-search-input-opacity);
    transition: opacity 0.4s ease, width 0.4s ease, left 0.4s ease;
}
.nav_contain_content_small{
    display: none;
}
    .nav_header_small{
        display: none;
    }

#burger {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
    border: none;
    outline: none;
    display: none; /* Hide by default */
}
.nav_contain_content_small.active {
    display: block; /* Show when active */
    flex-direction: column;  
    align-items: center; 
    justify-content: center;
    position: absolute;
    top: 50px;
    right:60px;
    transition: opacity 0.8s ease;
    padding: 2%;
}
/* Small devices (phones, tablets up to 998px) */
@media (max-width: 998px) {
    .nav_contain_content_small{
        flex-direction: column;  
        align-items: center; 
        justify-content: center;
        position: absolute;
        top: 50px;
        width: 100%;
        transition: opacity 0.8s ease;
        padding: 2%;
        height: calc(100dvh - 50px);
    }
    .nav_contain{
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        transition: top 0.2s ease;
        display: flex;
        flex-direction: column; 
        height: 50px;
    }
    .nav_contain_content{
        display: none;
    }
    .nav_header_small{
        width: 80%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    #burger {
        display: block; /* Show burger icon on mobile */
    }
}




/*# sourceMappingURL=index.css.map*/