#decorativeLeaves {
    height: 80vh;
    position: absolute;
    width: 100%;
    text-align: center;
}

#headerHeroContainer {
    background-image: url("../assets/images/hero-image-large-screen-background.svg");
    background-size: cover;
    background-position: bottom center;
    color: #fff;
}

header {
    height: 100vh;
    max-width: 1000px;
    margin: auto;
    padding: 1.25rem 1.25rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

nav {
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.menu-items {
    margin-top: 1rem;
    display: flex;
    gap: 2.5rem;
}

#callUsBtn {
    border-radius: 0.5rem;
    padding: 0.45rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
}

#callUsBtn:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.menu-icon {
    display: none;
}

.menu-icon-clicked div:nth-of-type(1) {
    transform: rotate(45deg) translate(8px, 4px);
}

.menu-icon-clicked div:nth-of-type(2) {
    transform: rotate(-45deg) translate(1px, 1px);
}

.menu-icon-clicked div:nth-of-type(3) {
    opacity: 0;
}

#heroContainer {
    display: flex;
    align-items: center;
    z-index: 1;
}

#heroContainer div:first-child {
    flex: 0.875;
}

#heroContainer div:last-child {
    flex: 1.5;
}

#orderNowBtn a {
    width: max-content;
    margin-inline: auto;
    border-radius: 4rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--color-orange);
    display: flex;
    gap: 1rem;
    align-items: center;
}

#orderNowBtn a:hover {
    background-color: var(--color-light-green);
}

@media (max-width: 500px) {
    .menu-items {
        display: none;
        margin-top: 0;
        position: absolute;
        top: 0;
        right: 0;
        border-bottom-left-radius: 4rem;
        padding: 7rem 1.25rem;
        background-color: var(--color-orange);
        flex-direction: column;
        align-items: end;
        gap: 1.5rem;
    }

    #callUsBtn {
        display: block;
    }

    .menu-icon {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1;
    }

    .menu-icon div {
        width: 27px;
        height: 3px;
        border-radius: 2px;
        transition-duration: 0.3s;
        background-color: #fff;
    }
}

@media (max-width: 600px) {
    #decorativeLeaves {
        display: none;
    }

    #headerHeroContainer {
        background-image: url("../assets/images/hero-image-small-screen.svg");
        background-position: left center;
    }

    nav img {
        width: 145px;
    }

    #heroContainer div:first-child {
        flex: unset;
    }

    #heroContainer div:last-child {
        display: none;
    }
}

@media (min-height: 700px) {
    #heroContainer div:first-child img {
        width: 100%;
    }
}

@media (min-height: 700px) and (min-width: 600px) {
    #orderNowBtn a {
        padding: 1rem 2rem;
        font-size: 1.55rem;
    }

    #orderNowBtn img {
        width: 45px;
    }
}