@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');

* {
    box-sizing: border-box;
}

html {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25pt;
    scroll-behavior: smooth;
}

body {
    background-image: url("../../Images/white_flowers.png"), linear-gradient(120deg, #ffbb00, white);
    background-repeat:repeat, no-repeat;
    background-size: 50%, cover;
    background-color: rgb(255, 192, 0);
    border: 3vmin double orange;
    display: flex;
    flex-direction: column; 
}

nav {
    position: sticky;
    margin-top: 3vmax;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-self: center;
    width: 93vw;
    height: 10vh;
    background-color: rgb(255, 136, 0);
    box-shadow: 5px 5px 10px brown;
}

.navigation {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.navigation > li {
    margin: 0 1rem;
    overflow: hidden;
}

.links {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.links:hover {
    background-image: radial-gradient(rgba(255, 255, 255, 0.8), transparent);
    text-decoration: underline double;
    border-radius: 10px;
}

.hamburger-box {
    height: 100%;
    width: 30px;
    margin-left: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}

#menu-toggle {
    display: none;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    position: absolute;
    display: block;
    height: 4px;
    width: 30px;
    border-radius: 2px;
    background-color: white;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.hamburger::before {
    content: '';
    margin-top: -8px;
}

.hamburger::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked + .hamburger-box .hamburger::before {
    margin-top: 0;
    transform: rotate(405deg);
}

#menu-toggle:checked + .hamburger-box .hamburger {
    background-color: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .hamburger-box .hamburger::after {
    margin-top: 0;
    transform: rotate(-405deg);
}

.title-image {
    width: 95vmin;
    height: auto;
    border: 1vmin solid brown;
    box-shadow: 5px 5px 10px brown;
    align-self: center;
    margin-top: 15vmin;
}

main {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 90%;
}

h1 {
    font-size: 5vmax;
    margin: 5vmax 0;
    text-align: center;
    font-weight: bold;
    color: orange;
    padding: 3vmin;
    text-shadow: 0.5vmin 0.25vmin 3px rgb(216, 104, 0);
}

h1,
.text {
    background-color: rgba(255, 255, 255, 0.829);
    border-radius: 10px;
}

.text {
    color: rgb(216, 104, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2vmin;
    padding-bottom: 7vmin;
    margin-bottom: 5vmax;
}

.menu-note {
    font-style: italic;
    font-family: 'Handlee';
    margin: 5vmin 0;
    border: 5px double rgb(216, 104, 0);
    padding: 3vmin;
    background-color: rgb(252, 201, 107);
}

p {
    text-align: center;
    font-size: 1rem;
}

.menu-note p {
    margin: 0;
}

strong {
    text-decoration: underline;
    letter-spacing: 0.1rem;
    color: white;
}

.dropbox {
    display: flex;
    flex-direction: column;
}

select:hover {
    box-shadow: 5px 5px 10px rgba(255, 166, 0, 0.671), -5px -5px 10px rgba(255, 166, 0, 0.671), 5px -5px 10px rgba(255, 166, 0, 0.671), -5px 5px 10px rgba(255, 166, 0, 0.671);
}

#menu {
    font-size: 0.8rem;
    background-color: white;
}

option[value] {
    background-color: rgb(252, 201, 107);
}

option[value=""] {
    color: rgb(117, 98, 63);
    text-align: center;
    background-color: rgb(207, 175, 114);
}

.menus {
    font-size: 0.8rem;
    background-color: rgb(252, 201, 107);
}

footer {
    font-size: 3vmin;
    background-color: rgb(255, 136, 0);
    color: white;
    font-style: italic;
    text-align: center;
    margin: 4vmax 1vmin 1vmin;
}

@media (max-width: 1320px) {
    body {
        border: none;
    }
    nav {
        top: 0;
    }
    nav,
    #menu-toggle:checked ~ .navigation li {
        width: 95vw;
        height: 7vh;
    }
    .hamburger-box {
        display: flex;
    }
    .navigation {
        position: absolute;
        top: 0;
        margin-top: 6px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    #menu-toggle ~ .navigation li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    }
    #menu-toggle:checked ~ .navigation li {
        height: 1.5em;
        border: 1px solid white;
        transition: height 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    }
    .navigation > li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: rgb(255, 136, 0);
    }
    .navigation > li:not(:last-child) {
        border-bottom: 1px solid white;
    }
    main {
        width: 100%;
    }
    p {
        margin: 10vmin;
    }
    footer {
        font-size: 0.75rem;
    }
}