/* resources/css/header.css */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.header-wrapper {
	margin-top: 13px;
}

#lou_logo {
    width: 60px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    height: 60px;
    transition: width 0.3s, height 0.3s;
}

#lou_logo.scrolled {
   width: 40px !important;
    height: 40px !important;
    margin: 10px !important;
}

.menu-wrapper .sidebar-logo {
    height: 62px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 11px!important;
}

.lou-menu-bg {
	-webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(245, 245, 247, .72);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: background .24s cubic-bezier(0.28, 0.11, 0.32, 1);
    transition: background .24s cubic-bezier(0.28, 0.11, 0.32, 1);
    background: rgba(250, 250, 252, 0.8);
}

.louno-menu {
    position: fixed;
    width: 100vw;
    top: 0;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
	box-shadow: 0px 3px 6px #00000029;
}

.lou-menu-innerwrapper {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.ui-button-flat:hover {
    color: #ddd;
    text-decoration: underline;
}

.hamburger-menu .pi {
    font-size: 27px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    color: #00293B;
}
.wrapper-menu-empty {
	display: none;
}

.mobile-menu {
    flex-direction: column;
    position: fixed;
    background-color: #C0CED2;
    top: 82px; 
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-menu.scrolled {
    top: 52px;
}

.mobile-menu.show {
    max-height: 500px; /* Adjust this value based on your content height */
}

.mobile-menu .ui-button-flat,
.mobile-menu .orange-btn,
.mobile-menu .default-wp-button {
    color: white;
    display: block;
    width: 100%;
    padding: 10px 20px;
    text-align: left;
}

.header-btn-sc-margin {
	margin: 5px 20px !important;
    padding: 10px !important;
    box-shadow: 0 1px 10px 0 rgba(229, 66, 10, 0.75) !important;
}
.header-btn-sd-margin {
	margin: 5px 20px !important;
    padding: 10px !important;
    box-shadow: 0 1px 10px 0 rgba(45, 54, 65, 0.75) !important;
}

@media screen and (max-width: 770px) {
    .wp-menu, .wrapper-action-buttons {
        display: none !important;
    }
    
    .hamburger-menu, .wrapper-menu-empty {
        display: flex !important;
    }
}
