﻿.sticky-header{
    width: 100rem;
    white-space: nowrap;
    top: 2rem;
    z-index: 99999;
    position: fixed;
    background-size: cover;
    left: 0;
    right: 0;
    margin: auto;
}
.sticky-header .inner{
    position: relative;
    background-color: transparent;
    height: auto;
    padding: 0;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 5rem;
    height: 4rem;
    cursor: pointer;
    position: relative;
    z-index: 999999;
}

.hamburger-menu span {
    display: block;
    height: 0.9rem;
    background-color: #7A5684;
    border-radius: 0.6rem;
    margin-bottom: 0.8rem;
}

/* Mobile Menu Styling */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 40rem;
    height: 100%;
    background-color: #E3D0BF;
    z-index: 999;
    transition: right 0.3s ease;
}

.mobile-menu ul {
    list-style: none;
    padding: 5rem 1rem;
    display: block;
    white-space: unset;
}

.mobile-menu ul li {
    margin-bottom: 3rem;
}

.mobile-menu ul li a {
    color: #000;
    text-decoration: none;
    font-size: 2.5rem;
}

/* When mobile menu is active */
.mobile-menu.active {
    right: 0;
}

.sticky-header ul{
    padding: 1.75rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 0rem;
}

.sticky-header ul li{
    color: #000;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    line-height: 3.75rem;
    letter-spacing: 0.25rem;
    padding: 0;
}

.sticky-header ul li p{
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border-radius: 10rem;
    box-shadow: 0px 1px 0px #666;
}

@media screen and (min-width: 769px) {
    .sticky-header{
        height: 7rem;
        background-color: #eeeeeee0;
        background-image: url(../images/Z9A_7395-42.jpg);
        background-blend-mode: soft-light;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        white-space: nowrap;
        top: 2rem;
        z-index: 99999;
        position: fixed;
        background-size: cover;
        left: 0;
        right: 0;
        margin: auto;
        border-radius: 7rem;
    }
    .hamburger-menu{
        display: none;
    }
    .desktop-menu a{
        text-decoration: none;
    }
    .desktop-menu ul li a p{
        background-color: white;
        transition: 0.5s;
    }
    .desktop-menu ul li a p:hover{
        background-color: lavender;
        scale: 1.2;
    }

}
@media screen and (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .hamburger-menu {
        display: block;
        float: right;
        margin-right: 2rem;
        margin-top: 5.5rem;
        position: relative;
        z-index: 9999999;
    }
    
    .sticky-header .inner {
        margin: 0;
    }

    .sticky-header ul {
        padding: 4.75rem 4rem;
        display: block;
        align-items: center;
        justify-content: right;
        margin-right: 0;
        margin-top: 7rem;
    }

    .sticky-header ul li {
        color: white;
        text-decoration: none;
        font-size: 2rem;
        font-weight: bold;
        line-height: 3.75rem;
        letter-spacing: 0.25rem;
        padding: 0 1rem;
    }

    .sticky-header ul li p{
        font-weight: bold;
        padding: 0.5rem 1.5rem;
        border-radius: 0;
        box-shadow: none;
        font-size: 2.5rem;
    }

}