@import url('https://fonts.googleapis.com/css2?family=Faculty+Glyphic&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

@view-transition {
  navigation: auto;
}

/* declare variables */
:root{
    --main_font: "Faculty Glyphic", sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


header{
    background-color: aqua;
    display: flex;
    padding: 0 20px;
    height: 75px;
    align-items: center;
}
header figure img{
    height: 70px;
}
header nav{
    flex: 1;  /*allow the flex box item to use all available space*/
}
header nav ul{
    display: flex;
    justify-content: space-evenly;
}
header nav ul li{
     list-style: none;
}

header nav ul li a{
    font-family: var(--main_font);
    text-transform: uppercase;
    text-decoration: none;
    color: black;
}

.active_link{
    color: blue;
    font-weight: bold;
}

main{
    background-color: burlywood;
    min-height: calc(100vh - 75px - 20px);
    padding: 20px;
    font-family: var(--main_font);
}

h1, h2 {
    text-align: center;
    padding: 5px 0 20px 0;
}

.section_wrapper{
    display: flex;
    gap: 20px;
}
.section_img, .section_wrapper figure{
    width: 200px;
}

p{
    padding: 30px 0;
}

footer{
    background-color: lightgrey;
    height: 20px;
    text-align: center;
    line-height: 20px;
     font-family: var(--main_font);
}

/* ================ FORM =================== */
#booking_form{
    width: 500px;
    margin: 30px auto;
    box-shadow: 1px 1px 15px black;
    padding: 20px;
    border-radius: 20px;
}

#booking_form legend{
    text-align: center;
}

#booking_form fieldset{
    border: 3px solid white;
    border-radius: 20px;
}

.input_group{
    margin: 15px 0;
    padding: 0px 15px;
    display: flex;
    gap: 20px;
}

.input_group input, .input_group textarea, .input_group select{
    padding: 3px;
    flex: 1;
}

.input_group textarea{
    resize: vertical;
}

.radio_button_group{
    display: flex;
    flex: 1;
    justify-content: space-between;
}

.radio_button_group div{
    padding: 0 16px;
}

#terms{
    margin: 12px 9px;
}

#submit_btn{
    width: 100%;
    padding: 10px;
    font-size: 25px;
    border: none;
    border-radius: 10px;
    transition: 0.5s;
}

#submit_btn:hover{
    background-color: blue;
    color: white;
}

@media print{
    header, footer, figure{
        display: none;
    }
    p{
        font-family: 'Times New Roman', Times, serif;
        font-size: 20px;
    }
}