.desktop-header {
    height: 142px;
    display: flex;
    flex: 3;
    width: 100%;
    flex-direction: row;
    position: fixed;
        
        top: 0px;
        left: 0px;
        z-index: 100;
}

    .desktop-header-left {
    display: flex;
    align-items: flex-start;
    position: relative;
    }

        .fullwidth-logo{
            height: 40px;
            margin: 56px 40px 0px 50px;
            cursor: pointer;
        }


        .desktop-menu-dropdown {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        position: absolute;
        top: 70%;
        left: 50px;
        }

            .desktop-header-left:hover .desktop-menu-dropdown {
            max-height: 200px;
            opacity: 1;
            }

            .desktop-menu-dropdown-button {
            padding: 8px 0;
            cursor: pointer;
            white-space: nowrap;

            }
            
    
    .desktop-header-middle{
        width: 70%
    }
    
    .desktop-header-right {
        display: flex;
        justify-content: center;
        align-items: center;

    }

        .menu-button{
            background-color: transparent;
            border: none;
            margin-right: 70px;
            cursor: pointer;
            text-decoration: none;
            color: black;

        }

.desktop-menu-dropdown-button:hover,
.menu-button:hover {
    cursor: pointer;
}


.mobile-header{
    height: 120px;
    display: flex;
    flex: 2;
    width: 100%;
    flex-direction: row;
    position: fixed;
    background-color: white;
        top: 0px;
        left: 0px;
        z-index: 98;
}

.mobile-header-left{
    display: flex;
    align-items: flex-start;
    position: relative;

}

.mobile-header-middle{
    width: 70%;

}

.mobile-header-right{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50px;

}

.hamburger-icon{
    width: 50px;
    display: block;
}

.hamburger-menu-dropdown{
    position: relative;
}

.hamburger-menu-dropdown-button{
    position: absolute;
    top: 100%;
    right: 40px;
    display: flex;
    flex-direction: column;
    text-align: right;
    row-gap: 34px;
    font-size: 38px;
    padding-top: 24px;

        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
        transform: translateY(10px);
}

.hamburger-menu-dropdown:focus-within .hamburger-menu-dropdown-button{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

    .hamburger-menu-dropdown-button a:focus {
        text-decoration: underline;
        color: #111cf1;
    }

    .hamburger-menu-dropdown-button a:not(:focus) {
        text-decoration: none;
        color: black;
    }

.desktop-footer {
  position: fixed;
  bottom: 50px;
  left: 50px;
  width: 100%;
  font-size: 22px;
  z-index: 1000;
}


   .mehhlysa-homepage .footer-menu,
    .mehhlysa-about .footer-menu,
    .mehhlysa-gallery .footer-menu,
    .mehhlysa-contact .footer-menu {
        position: relative;
        display: flex;
        justify-content: flex-end;
        gap: 20px;
        margin-bottom: 45px;
        z-index: 1001;

    }

    @media (max-width: 980px) {
    .mehhlysa-homepage .footer-menu,
    .mehhlysa-about .footer-menu,
    .mehhlysa-gallery .footer-menu,
    .mehhlysa-contact .footer-menu {display: none;}
}

.mobile-header{display: none;}
.desktop-header{display: flex;}

@media (max-width: 980px) {
    .desktop-header { display: none; } 
    .mobile-header { display: flex; } 
    .desktop-footer{ font-size: 28px;}

}



