@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

header{
    height: 80px;
    background-color: lightgrey;
    display: flex;
    padding: 0 20px;

}

i{
    font-size: 20px;
}

nav{
    flex: 1;
}

nav ul{
    display: flex;
    height: 80px;
    align-items: center;
    gap: 10px;
    justify-content: space-evenly;
    


}

nav ul li{
    list-style-type: none;


}

nav ul li a{
    text-decoration: none;
    color: black;


}

a.active{
    font-weight: bold;
    color: darkblue;
}

main{
    min-height: calc(100vh - 80px - 70px);
    background-color: whitesmoke;
    padding: 20px;
}

main iframe{
    width: 100%;
}

main h1{
    text-align: center;
    font-family: "Oswald", sans-serif;
}

main figure, section div{
    width: 50%;
}

main div{
    padding-left: 20px;

}

main img{
    width: 100%;
}



main h2{
    width: 100%;
}

main li{
    margin-left: 20px;
}

footer{
    height: 70px;
    background-color: lightgrey;
}

footer address{
    color: black;
    height: 70px;
    text-align: center;
    line-height: 70px;


}

.booking_form{
    width: 500px;
    /* border: 2px solid black; */
    margin: 30px auto;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 1px 1px 15px black;
}
.booking_form legend{
    text-align: center;
}

.booking_form fieldset{
    border-radius: 20px;
    border: 3px solid white;
}

.input_group{
    margin: 15px 0;
    display: flex;
    gap: 5px;
    padding: 0 15px;
}

.input_group textarea{
    resize: vertical;
}

.input_group input, .input_group textarea{
    padding: 3px;
    flex: 1;
}

#submit_button{
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    transition: 0.5s;
}

#submit_button:hover{
    background-color: black;
    color: white;
}

.about_us{
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.answers{
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 5px 5px 10px lightgrey;
    table-layout: auto;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    
}


.answers td,th{
    border: thin solid;
    border-color: black;
    padding: 20px;

    


}
.answers p{
    line-height: 20px;
    margin-bottom: 10px;
}
.green::marker{
    color: green;
}

.red::marker{
    color: red;

}
.featured{
    display: flex;
}

.featured p{
    margin: 10px 0px;
}

.featured li{
    padding: 10px;
    font-weight: bold;
}
.featured a{
    font-weight: bold;
    color: darkblue;
}

#byrhonda{
    text-align: center;
}

.details{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: row;
    flex-wrap: nowrap;
    
}

.recipe{
    padding: 20px;
    border-radius: 15px;
    background-color: lightblue;
    height: fit-content;
}

.recipeblock{
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    margin-bottom: 20px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.notes ul, li{
    list-style: decimal;
    padding: 5px;
}

.notes{
    padding: 20px;
    background-color: whitesmoke;
    border-radius: 15px;
    font-size: small;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    margin-bottom: 20px;
}

#equipment li{
    list-style: disc ;
    padding: 10px;
}

.recipeblock h3{
    margin-bottom: 20px;
}

.process{
    margin: 20px auto 20px auto;
}

@media print {header, img, a {
    display: none;
} 

    html, body {
        margin: 0; page-break-after: avoid;page-break-before: avoid;
    }
    
    section{
        display: flex;
        flex-wrap: wrap;
        margin-left: 0%;
        margin-right: 0%;
    }
    main, section, div, .details p{
        font-size: smaller;
        margin: 0px;
        padding: 0px;
        text-align: left;

    }
    .notes{
        font-size: 75%
    }
}