:root {
    --main-color:#026dfe;
}
::-webkit-scrollbar {
    width: 20px;
}
::-webkit-scrollbar-track {
    background: var(--main-color);
}
::-webkit-scrollbar-thumb {
    background: rgb(10, 10, 105);
    border: 1px dashed rgb(119, 119, 255);
    border-radius: 4px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline-color: var(--main-color);
}
li {
    list-style-type: none;
}
a {
    text-decoration: none;
    color:black;
}
body {
    font-family: 'Open Sans', sans-serif;
}

/* ------- styling the nave bar -------*/
header {
    width: 100%;
    min-height: 400px;
    height: 600px;
    background:linear-gradient(0deg, rgba(12, 12, 12, 0.7), rgba(12, 12, 12, 0.7)), url("images/reservation-bg.jpg") center no-repeat ;
    background-size: cover;
    display: flex;
    flex-direction: column;
}
header nav {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background-color: #1b1b1bb2;
    padding: 0 15vw;
}
header nav .nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 30%;
}
header nav .nav-menu .nav-item {
    padding: 5px 10px;
    margin: 0 10px;
    transition: border-bottom linear 200ms;
}  
header nav .nav-menu .nav-item:hover, 
header nav .nav-menu .nav-item:focus,
header nav .nav-menu .nav-focus,
header nav #nav-menu-mobil .nav-item:hover,
header nav #nav-menu-mobil .nav-item:focus,
header nav #nav-menu-mobil .nav-focus {
    border-bottom: 3px solid var(--main-color);
}  
header nav .nav-menu .nav-item a {
    color: white;
    font-weight: 600;
}
header nav .nav-menu a {
    display: block;
    width: 30%;
}

header nav #logo {
    height: 100px;
    width: 200px;
}

header nav .fa-bars {
    display: none;
}
header nav #nav-menu-mobil {
    display: none;
}


header .header-content {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header .header-content h3, header .header-content h3 a {
    color: #a7a7a7;
    font-size: 16px;
    font-weight: 400;
    transition: color linear 200ms;
}
header .header-content h3 a:hover {
    color: var(--main-color);
}
header .header-content h2 {
    color: white;
    font-size: 60px;
    margin-top: 8px;
}




/* ------- styling the reservation part -------*/
main {
    width: 100%;
    background-color:#262626;
    text-align:center;
}

main section>img {
    width: 67px;
    height: 12px;
    margin: 50px 0 10px;
}
main section h2 {
    text-transform: uppercase;
    color: white;
    font-size: 40px;
}
main section .form-information {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 50px 0;
}
main section .form-information form {
    width: 35%;
    display: flex;
    flex-direction: column;
}
.re-steps {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(131, 131, 131);
    border: 3px solid rgb(131, 131, 131);
    border-radius: 100px;
    margin:0;
    transition: color linear 300ms, border-color linear 200ms;
}
.on-re-steps {
    color: rgb(255, 255, 255);
    border: 3px solid rgb(255, 255, 255);
}
main section .form-information form div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}
main section .form-information form div label:nth-child(2) {
    align-self: center;
    color: white;
}
main section .form-information form div select, main section .form-information form div input {
    width:150px;
    padding: 8px 5px;
    background-color: transparent;
    color: white;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    cursor: pointer;
}
main section .form-information form div select option {
    background-color: var(--main-color);
}
main section .form-information form #submit {
    width: fit-content;
    align-self: center;
    font-size: 18px;
    color: white;
    background-color: transparent;
    margin: 30px 0;
    padding: 10px 30px;
    border:3px solid var(--main-color);
    cursor: pointer;
    transition: box-shadow linear 200ms;
}
main section .form-information form #submit:hover, main section .form-information form #submit:focus {
    box-shadow: 0 0.5em 0.5em -0.4em var(--main-color);
}

main section .info-table table {
    background-size: contain;
    background-color: var(--main-color);
    margin: 0 20px;
}
main section .info-table table tr {
    background-color: #262626;
}
main section .info-table table tr th {
    border: 1px solid var(--main-color);
    background-color: rgb(214, 214, 214);
    padding: 8px 5px;
}
main section .info-table table tr td{
    color: white;
    border: 1px solid var(--main-color);
    padding: 10px 15px;
}





/* ------- styling the Footer part -------*/
#up {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 1%;
    right: 1%;
    width: 70px;
    height: 50px;
    background-color: var(--main-color);
    color: white;
    z-index: 10;
    cursor: pointer;
    font-size: 30px;
    transition: font-size linear 200ms;
}
#up:hover {
    font-size: 40px;
}
#up a {
    color: white;
    padding: 15px;
}

footer {
    width: 100%;
    min-height: 500px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    background-color: #000915;
    padding: 50px ;
}
footer .footer-links {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
footer .footer-links div {
    width: 40%;
    display: flex;
    flex-direction: column;
    margin: 20px;
}
footer .footer-links div h6 {
    font-size: 18px;
    color: white;
    margin: 20px 0;
}
footer .footer-links div h6::after {
    content: "";
    display: block;
    background-color: var(--main-color);
    width: 40px;
    height: 1px;
    margin: 8px 0;
    border: 1px solid var(--main-color);
}
footer .footer-links .letter {
    width: 35%;
}
footer .footer-links .letter form {
    display: flex;
    flex-direction: column;
}
footer .footer-links .letter form input {
    width: fit-content;
    background-color: transparent;
}
footer .footer-links .letter form input[type="email"]::placeholder {
    color: gray;
    font-style: italic;

}
footer .footer-links .letter form input[type="email"] {
    font-size: 16px;
    color: white;
    width: 100%;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid gray;
    margin: 10px 0;
    padding: 10px 10px 10px 5px;
    outline: none;
}
footer .footer-links .letter form input[type="submit"] {
    color: white;
    margin: 20px 0;
    padding: 15px 30px;
    border:3px solid var(--main-color);
    cursor: pointer;
    transition: box-shadow linear 200ms;
}
footer .footer-links .letter form input[type="submit"]:hover, footer .footer-links .letter form input[type="submit"]:focus {
    box-shadow: 0 0.5em 0.5em -0.4em var(--main-color);
}
footer .footer-links .links ul {
    display: flex;
    flex-direction: row;
}
footer .footer-links .links ul div li a {
    font-weight: 300;
    color: rgb(161, 161, 161);
    transition: color linear 200ms;
}
footer .footer-links .links ul div li a:hover {
    color: var(--main-color);
}

footer hr {
    margin:20px 0;
}

footer .footer-rights {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
footer .footer-rights p {
    font-size: 14px;
    font-weight: 300;
    color: rgb(207, 207, 207);
    margin:20px 0;
}
footer .footer-rights p i {
    color: var(--main-color);
}
footer .footer-rights p span {
    font-size: 16px;
    font-weight: 500;
    color: rgb(255, 255, 255);
}
footer .footer-rights div i {
    color: white;
    margin: 5px 5px;
    padding: 10px;
    border: 2px solid gray;
    border-radius: 2px;
    cursor: pointer;
    transition: border linear 200ms;
}
footer .footer-rights div i:hover {
    border-color: white;
}





@media screen and (max-width:1200px) {
    main section .form-information {
        flex-direction: column-reverse;
    }
    main section .form-information form {
        width: 40%;
        margin-top: 50px;
    }
}
@media screen and (max-width:800px) {
    main section .form-information form {
        width: 50%;
    }
}
@media screen and (max-width:768px) {
    header nav .nav-menu {
        margin: 0 30px;
    }
    header nav #logo {
        height: 90px;
        width: 180px;
    }
    header .header-content h2 {
        font-size: 45px;
    }


    main section h2 {
        font-size: 35px;
    }

    main section .info-table table tr th {
        padding: 8px 5px;
    }
    main section .info-table table tr td{
        padding: 8px 11px;
    }
}

@media screen and (max-width:630px) {
    header nav {
        width: 100%;
        height: 100px;
        padding: 0 15vw;
        justify-content: space-between;
        position: relative;
    }
    header nav .nav-menu {
        display: none;
    }
    header nav .fa-bars {
        display: block;
        font-size: 30px;
        color: white;
        margin: 0 30px;
        transition: color linear 200ms;
    }
    header .menu-on .fa-bars {
        color: var(--main-color);
    }
    header nav #logo {
        height: 60px;
        width: 100px;
    }

    header nav #nav-menu-mobil {
        display: flex;
        flex-direction: row;
        padding: 20px 7px;
        background: #262626;
        position:absolute;
        top: 65%;
        left: 50%;
        transform: rotateX(90deg) translateX(-51.5%);
        transition:all linear 300ms;
        z-index: 1;
    }
    header .menu-on #nav-menu-mobil {
        top: 100%;
        transform: rotateX(0deg) translateX(-51.5%);
    }

    header nav #nav-menu-mobil .nav-item {
        padding: 5px 10px;
        margin: 0 7px;
    }  
    header nav #nav-menu-mobil .nav-item a {
        color: white;
        font-weight: 600;
    }


    main section h2 {
        font-size: 30px;
    }
    main section .form-information {
        width: 100%;
        display: flex;
        padding: 50px 0;
    }
    main section .form-information img {
        width: 70%;
        margin-top: 20px;
    }
    main section .form-information form {
        width: 60%;
    }
    main section .form-information form #submit {
        font-size: 17px;
        padding: 10px 25px;
    }

}


@media screen and (max-width:550px) {
    main section .form-information form {
        width: 90%;
    }
    main section .info-table table tr th {
        padding: 5px 3px;
    }
    main section .info-table table tr td{
        padding: 5px 8px;
    }
}

@media screen and (max-width:440px) {
    header nav #nav-menu-mobil {
        display: flex;
        flex-direction: row;
        padding: 10px 7px;
        background: #262626;
        position:absolute;
        top: 65%;
        left: 50%;
        transform: rotateX(90deg) translateX(-51.5%);
        transition:all linear 300ms;
        z-index: 1;
    }

    header nav #nav-menu-mobil .nav-item {
        padding: 5px 7px;
        margin: 0 5px;
    }   
    header nav #nav-menu-mobil .nav-item a {
        font-size: 12px;
    } 
    header .header-content h2 {
        font-size: 35px;
    }


    font-size: 25px;
    main section h2 {
    }


    main section .info-table table tr th {
        padding: 1px 2px;
    }
    main section .info-table table tr td{
        padding: 2px 4px;
    }

}

@media screen and (max-width:375px) {
    header nav .fa-bars {
        font-size: 25px;
    }
    header nav #nav-menu-mobil {
        display: flex;
        flex-direction: row;
        padding: 8px 5px;
        background: #262626;
        position:absolute;
        top: 65%;
        left: 50%;
        transform: rotateX(90deg) translateX(-51.5%);
        transition:all linear 300ms;
        z-index: 1;
    }

    header nav #nav-menu-mobil .nav-item {
        padding: 5px 5px;
        margin: 0 5px;
    }   
    header nav #nav-menu-mobil .nav-item a {
        font-size: 12px;
    } 
   



    footer {
        padding: 20px;
    }
    footer .footer-links {
        flex-direction: column;
    }
    footer .footer-links div {
        width: 80%;
    }
    footer .footer-links .letter {
        width: 80%;
    }
    footer .footer-rights {
        text-align: center;
        flex-direction: column;
    }
}

