#header {
    background-image: url("../images/reservations.jpg");
    background-color: rgba(0, 0, 0, 0.60);
    background-blend-mode: overlay;
    background-position: center;
    background-size: cover;
    padding-top: 75px;

    display: flex;
    height: 753px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

.header_logo {
    width: 120px;
    flex-shrink: 0;
    background-position: center;
    background-size: cover;
}

.header_text {
    display: flex;
    width: 442px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

#reservation_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    padding-top: 175px;
    padding-bottom: 100px;

    form {
        display: flex;
        flex-direction: column;
        gap: 25px;

        input {
            color: #141414;
            font-family: Figtree, sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 25px;
            margin: 0px;
            height: 40px;
            border-radius: 10px;
            border: 2px solid transparent;
            width: 400px;
            padding: 0 25px;
        }

        input:focus,
        input:hover {
            border: 2px solid #FF5E16;
        }


        textarea {
            color: #141414;
            font-family: Figtree, sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 25px;
            margin: 0px;
            height: 40px;
            border-radius: 10px;
            border: 2px solid transparent;
            width: 400px;
            padding: 0 25px;
        }

        textarea:focus,
        textarea:hover {
            border: 2px solid #FF5E16;
        }
    }
}

.input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.form_container {
    width: 450px;
}

@media screen and (max-width: 480px) {

    /* Global */
    h1 {
        font-size: 60px;
    }

    h2 {
        font-size: 28px;
    }

    /*header*/
    .header_p {
        max-width: 260px;
    }

    /*reservation form*/

    #reservation_form {
        gap: 90px;
        padding-top: 95px;
        padding-bottom: 60px;

        .form_container {
            width: 250px;
            .form {
                input {
                    font-size: 12px;
                    height: 25px;
                    width: 200px;
                }
            }
        }
    }
}