/* full page styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #FCF5E5;
}
/* header styles */
header {
    padding: 1em;
    background-color: #722F37;
}

header a {
    color: black;
    text-decoration: none;
}

header a:hover {
    color: #FCF5E5;
}
/* h styles fancy cursive writing */
h1 {
    font-family: cursive, lucida;
    font-size: 3em;
    text-align: center;
}

h2 {
    font-family: cursive, lucida;
    text-align: center;
    font-size: 2em;
}
/* reservation form styles */
form {
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 80%;
}

input {
    margin-bottom: .5em;
}

textarea {
    margin-bottom: .5em;
}
/* navbar styles */
nav {
    font-family: cursive, lucida;
    font-size: 1.2em;
    text-align: center;
    background-color: #FCF5E5;
}

nav a {
    text-decoration: none;
    color: black;
}

nav a:hover{
    color: #722F37;
}
/* nav unordered list styles */
nav ul {
        display: flex;
        flex-direction: column;
        list-style-type: none;
        padding-left: 0;
        margin: 0;
}
nav li {
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
}

ul {
    list-style-type: none;
    text-align: center;
    font-family: cursive, lucida;
    font-size: 1.5em;
}

footer {
    text-align: center;
    background-color: #722F37;
}
/* class for map image*/
.map {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
}
/* class for image grid */
.image-grid {
    --gap: 16px; /* var -- can be reused for other values */
    --num-cols: 3;
    --row-height: 400px;
    box-sizing: border-box;
    padding: var(--gap);
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
}
/* class for image grid pictures */
.image-grid > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*menu container for whole page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5em;
}
/* menu font */
.menu {
    font-family: sans-serif;
    font-size: 14px;
}
/* menu heading font */
.menu-group-heading {
    margin: 0;
    padding-bottom: 1em;
    border-bottom: 2px solid;
    text-align: center;
}
/* menu grid layout */
.menu-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5em;
    padding: 1.5em 0;
}

.menu-item-heading {
    display: flex;
    justify-content: space-between;
}

.menu-item-name {
    margin-right: 1.5em;
}

.menu-item-description {
    font-family: arial;
}
/* media query for large screens */
@media screen and (min-width: 992px) {
    .menu {
        font-size: 16px;
    }
    .menu-group {
        grid-template-columns: repeat(2, 1fr);
    }
    nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        padding-right: 2em;
    }
    nav li {
        width: 12em;
    }
}
/* media query for mobile */
@media screen and (max-width: 1024px) {
    form{
        width: 60%;
        display:grid;
        gap: 1em;
        grid-template-columns: 10em 1fr;
    }
    .image-grid {
        --num-cols: 1;
        --row-height: 300px;
    }
}


  

  
