@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@200;400&family=Luxurious+Script&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Bitter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    background-image: url(/images/banner.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100svh;
    overflow: auto;
}

h3 {
    font-family: "luxurious script";
    text-align: center;
    font-size: 4rem;
    opacity: .5;
    margin-top: 4rem;
}

section.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}

section.hero h1 {
    width: 100%;
    margin: auto;
    background: #00000070;
    padding: 2rem;
    position: sticky;
    top: 0;
}

section.hero h1 img {
    width: 50%;
    margin: auto;
    display: block;
}

section.about,
section.menu {
    background-color: antiquewhite;
    padding: clamp(3rem, 4vw, 48px);
    color: #554300;
    font-size: 20px;
}

section>.container {
    max-width: 1200px;
    margin: auto;
}

p {
    margin-bottom: 2rem;
}

.button_row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.button,
input[type="submit"] {
    display: inline-block;
    padding: 2rem;
    border: 1px solid #554300;
    margin: 0 2rem;
    text-decoration: none;
    color: #554300;
    min-width: 300px;
    text-align: center;
    text-transform: uppercase;
    transition: .3s all ease;
    margin-bottom: 2rem;
}

.button:hover,
input[type="submit"]:hover {
    background: #55430014;
}

body.secondary {
    background-image: none;
    background-color: antiquewhite;
}

body.secondary h1 {
    width: 300px;
    margin: 4vw auto;
}

section.reservations {
    padding: 0 4vw;
    font-size: 20px;
}

section.reservations form {
    max-width: 1200px;
    margin: auto;
    padding-bottom: 4vw;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    background: #73600021;
    border: 0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-family: 'Bitter';
}

section.reservations .container {
    max-width: 1200px;
    margin: auto;
    padding-bottom: 4vw;
}

input[type="submit"] {
    width: 300px;
    margin: 0 auto;
    display: inline-block;
    background: transparent;
    margin-left: 50%;
    transform: translate(-50%, 0px);
    cursor: pointer;
}

textarea {
    min-height: 300px;
}

.strong {
    font-size: 1.2em;
}

.text-center {
    text-align: center;
}


body.secondary h1 img {
    filter: brightness(0.4);
    opacity: 0.6;
}

.menu_section {
    display: flex;
    border: 1px solid #6d5b0142;
    padding: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

img.menu-photo {
    width: 40%;
    height: auto;
    object-fit: contain;
    flex-grow: 1;
}

.description {
    padding: 4rem 5rem;
    width: 60%;
}

section.menu ul {
    list-style: none;
}

.menu_section strong {
    font-size: 2rem;
    display: block;
    border-bottom: 1px solid rgba(139, 69, 19, 0.342);
    padding-bottom: .5rem;
    margin-bottom: 1rem;
}

section.menu ul li:nth-of-type(odd) .menu-photo {
    padding-right: 4vw;
}

section.menu ul li:nth-of-type(even) .menu-photo {
    padding-left: 4vw;
}
.form_wrapper {
    position: relative;
}

.form-disabled {
    position: absolute;
    inset: 0;
    width: 70%;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #9c8f81;
    box-shadow: 10px 10px 30px black;
    height: fit-content;
    color: white;
    padding: 3vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
@media (max-width:991px) {
    .description {
        padding: 1rem 0.75rem;
        width: 100%;
    }

    img.menu-photo {
        width: 100%;
        max-height: 280px;
        object-fit: contain;
        padding: 0 !important;
    }

    section.menu ul li:nth-of-type(odd) .menu-photo {
        order: 1;
    }

    section.menu ul li:nth-of-type(odd) .description {
        order: 2;
    }
}