@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&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: tomato;
    display: flex;
    padding: 0 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: white;
    font-size: clamp(10px, 3vw, 20px);
}

a.active{
    font-weight: bold;
}

main{
    min-height: calc(100vh - 80px - 70px);
    background-color: aqua;
    padding: 20px;
}

main h1{
    text-align: center;
    font-family: "Orbitron", sans-serif;
}

main figure, section div{
    width: 50%;
}

main div{
    padding-left: 20px;
}

main img{
    width: 100%;
}

main section{
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
}

main h2{
    width: 100%;
}

main li{
    margin-left: 20px;
}

main iframe{
    width: 100%;
}

footer{
    height: 70px;
    background-color: black;
}

footer address{
    color: white;
    height: 70px;
    text-align: center;
    line-height: 70px;
}

.booking_form{
    width: 500px;
    /* border: 2px solid blue; */
    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: none; */
    border: 3px solid white;
}

.input_group{
    margin: 15px 0;
    display: flex;
    gap: 10px;
    padding: 0 15px;
}

.terms{
    margin: 15px 0;
}

.input_group input, .input_group textarea{
    padding: 3px;
    flex: 1;
}

.input_group textarea{
    resize: vertical;
}

.radio_button_group{
    display: flex;
    justify-content: space-between;
    flex: 1;
    padding-left: 0;
}

.radio_button_group div{
     padding-left: 0;
}


#submit_button{
    width: 100%;
    padding: 10px;
    font-size: 25px;
    border: none;
    border-radius: 10px;
    transition: 0.5s;
}

#submit_button:hover{
    background-color: blue;
    color: white;
}

.bi-printer{
    color: white;
    cursor: pointer;
}

.two_pan{
    display: flex;
    gap: 20px;
}

.keep_left, .keep_right{
    /* width: 45%; */
    border-radius: 20px;
    box-shadow: 1px 1px 20px black;
    padding: 20px;
}

@media print {
    header, footer{
        display: none;
    }

    main img{
        width: 25%;
    }

    p{
        font-size: 8px;
    }
}

/* @media (max-width: 500px) {
    nav ul li a{
        font-size: 12px;
    }
} */