html, body{
    margin: 0;
    background-color: rgb(251, 239, 215);
    width:100% ;
}

@media screen and (max-width: 900px) {
    .menu-grid{
        grid-template-columns: 1fr;
    }
 aside{
    display: none;
 }
 }
 @media screen and (min-width: 900px) {
    .menu-grid{
        grid-template-columns: 1fr;
    }
    
}
aside{
    box-shadow: 1px 6px 12px -4px rgba(0,0,0,0.75);
    width: 20%;
    float: right;
    padding: 10px;
    margin-bottom: 6px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(127, 179, 127);
    color: white
}


nav img {
    width: 5%; 
}

nav {
   box-shadow: 1px 6px 12px -4px rgba(0,0,0,0.75);
    background: rgb(127, 179, 127);
    padding: 5px;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 4%;
    font-family: monospace
}

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

nav a:hover{
    background-color:wheat ;
    color: rgb(20, 109, 20);
}
img{
    width: 50%;
    padding-right:3%;
    max-width: 900px;
  
}

main{
    padding: 10%;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


footer{
    text-align: center;
    padding-bottom: 2rem;
}


h1, h2{
    color: rgb(20, 109, 20);
    font-size: 30px;
   font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
   padding-top: 40px;
}


.container{
    display: grid;
    height: 100%;
    grid-template-columns: (1fr 1fr );
    grid-template-rows: repeat(3, 150px);
    justify-content: space-around;
}

.container div{
    margin: 10px;
    padding: 5px;
    text-align: left;
    font-size: 25px;
}

article{
background: rgb(127, 179, 127);
max-width: 900px;
padding: 10px;
padding-bottom: 3rem;
}

.blog{
background: rgb(127, 179, 127);
max-width: 900px;
padding: 10px;
padding-bottom: 3rem;
}

form{
    flex-direction: column;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.color{
color: white;
}


.reservation-container{
    box-shadow: 1px 6px 12px -4px rgba(0,0,0,0.75);
    max-width: 400px;
    padding: 20px;
    background-color: rgb(127, 179, 127);
    border-radius: 12px;
    color: white;
}

.form-group{
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

label{
    margin-bottom: 6px;
    font-family: monospace;
    display: flex;
    flex-direction: column;
}
input{
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.blog-foto img{
    float: left;
}

.reservatie-section{
    display: flex;
    align-items: flex-start;
}


.menu-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:60px 40px;
    margin: 0 auto;
}

.menu-card{
    position: relative;
}

.menu-card img{
object-fit: cover;
display: block;
width: 100%;
height: 360px;
}

.card-content{
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color:rgb(20, 109, 20);
    padding: 15px;
    width: 70%;
    border-radius: 6px;
    box-shadow: 1px 6px 12px -4px rgba(0,0,0,0.75);
}

.card-content h3{
    margin: 0 0 12px;
    color: white;
}

.intro{
    text-align: center;
    margin: 3rem auto;
}

.over-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-box img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.contact-grid{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin: 60px auto;
padding: 0 20;
}

.map iframe{
    width: 60%;
    height: 3Opx;
    border-radius: 12px;
    border: none;
}

iframe{
    border: none;
}

@media screen and (max-width: 900px) {
    .over-grid {
        display: block;
    }
}