@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans&display=swap');

.top-banner {
    padding: 10px 100px;
}

@media (max-width: 768px) {
    .top-banner {
        padding: 10px 15px;
    }
}

.site-header {
    display: flex;
    position: fixed;
    width: 100%;
    top: 30px;
    justify-content: space-between;
    background: white;
    box-shadow: 0px 4px 12px #00000008;
    height: 72px;
    align-items: center;
    padding: 0px 100px;
}

@media (max-width: 768px) {
    .site-header {
        padding: unset;
    }
}

.site-header a {
    text-decoration: none;
}

nav {
    left: 0px;
    width: 100%;
    position: absolute;
}

.nav__main-list__item {
    flex: 1;
    text-align: center;
    counter-increment: mobileNavMainListItem;
    flex: unset;
    text-align: unset;
}

.nav__main-list__item a {
    color: black;
    text-transform: uppercase;
    font-size: 35px;
    line-height: 46px;
    transform: all 0.5s;
}

ul.menu-items {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav__main-list__logo {
    font-size: 27px;
    letter-spacing: 1px;
}

ul.menu-items {
    flex-direction: column;
    top: 35px;
    position: absolute;
    background: #f7f7f7;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: unset;
    padding: 30px 35px;
    counter-reset: mobileNavMainListItem;
    align-items: unset;
    left: 110vw;
    transition: left 0.3s ease-in-out;
    /* animate the left property */
    z-index: 9999;
    box-shadow: -3px 5px 10px #00000024;
}

.menu-active {
    left: 55vw !important;
}

@media (max-width: 768px) {
    .menu-active {
        left: 0vw !important;
    }
}


.item-numbered::before {
    content: counter(mobileNavMainListItem) "— ";
    font-size: 20px;
    vertical-align: top;
    min-width: 30px;
    display: inline-block;
}

.top-bar__order-btn {
    align-items: center;
    background: transparent;
    color: white;
    font-size: 13px;
    padding: 13px 43px;
    border-radius: 100px;
    line-height: 14px;
    width: fit-content;
    text-decoration: none;
    font-weight: normal;
    border: 2px solid #ffffffab;
}

.checkbox {
    display: block;
    right: 5px;
    position: absolute;
    height: 30px;
    width: 50px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.hamburger-lines {
    display: block;
    height: 15px;
    width: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    right: 15px;
}

.hamburger-lines .line {
    display: block;
    height: 2px;
    border-radius: 10px;
    background: #000000;
}

.hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}

.hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

.navbar .menu-items li {
    margin-top: 1.2rem;
    /* font-size: 2.15rem; */
    font-weight: 500;
}

input[type="checkbox"]:checked~.menu-items {
    transform: translateX(0);
}

input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(43deg);
    top: 0px;
    position: relative;
}

input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
}

input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-43deg);
}

/* Hover effects */
.nav__main-list__item a:hover {
    color: #e0989f;
}