@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Text:wght@200..700&display=swap');

/* font-family: "Stack Sans Text", sans-serif; */

body{
    margin: 0;
    padding: 0;
    font-family: "Stack Sans Text", sans-serif;
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item{
    padding-left: 2rem;
    padding-right: 2rem;
    color: black;
    text-decoration: none;
}
.nav-item:hover{
    padding-left: 2rem;
    padding-right: 2rem;
    color: black;
    text-decoration: underline;

}

.nav-item__logo{
    height: 5rem;

}

header > p { 
 width: 60%;
 margin-left: 10rem;
}

header > p > span{ 
    font-weight: bold;
}

/*Home page*/
.introductie{
    background-image: url(../assets/images/header-img.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15rem 0;
    color: white;
    
}




.gerecht{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 3rem;

}

.gerecht-text{
    margin-left: 5rem;
}

.gerecht-img{
height: 30rem;
border-radius: .5rem;
}

.aanbod{
    display: flex;
    align-items: center;
    justify-content: center;
}

.aanbod-img{
    height: 30rem;
    border-radius: .5rem;
}

.aanbod-text{
    padding-right: 3rem;
}

.aanbod-lijst__item{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/*About page*/

.header-about{
    text-align: center;
    justify-content: center;
    max-width: 55rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}



.team{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 55rem;
    margin: 0 auto;
    padding: 2rem;
    }

.team-card{
    background-color: green;
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 1rem;
    aspect-ratio: 1 / 1;
}

.team-card_img{
    width: 10rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.aanpak{
    text-align: center;
    max-width: 55rem;
    margin: 4rem auto;
    padding: 0 1rem;
}

.padding h3{
    margin-bottom: 1rem;
}

/*Menu page*/
.menu{
    max-width: 55rem;
    margin: 4rem auto;
    padding: 0 1rem;
    text-align: center;
}

.menu-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item{
    background-color: green;
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.menu-item:hover{
    transform: translateY(-4px);
}

.menu-item img{
    width: 100%;
    max-width: 12rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.menu-price{
    font-weight: bold;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.reserveren{
    max-width: 55rem;
    margin: 5rem auto;
    padding: 0 1rem;

}

.reservering-form{
    max-width: 50rem;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
   
}
.form-row{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.form-row label{
    text-align: left;
    font-weight: 500;
}

.form-row input,
.form-row textarea{
    width: 100%;
    padding: .8rem;
    font-family: inherit;
    font-size: 1rem;
    border-radius: .6rem;
    border: 1px solid #ccc;
    box-sizing: border-box;
    
}

.form-row textarea{
    min-height: 6rem;
    resize: vertical;
}

.form-actions button{
 background-color: green;
 color: white;
 padding: .8rem 1.5rem;
 border: none;
 border-radius: .6rem;
 font-size: 1rem;
 font-weight: 600;
 cursor: pointer;
 transition: background-color 0.2s ease, transform 0.1s ease;
}

.form-actions button:hover{
    background-color: #0a7a0a;
}

.form-actions button:active{
    transform: translateY(1px);
}

.form-row input:focus,
.form-row textarea:focus,
.form-actions button:focus{
    outline: 2px solid green;
    outline-offset: 2px;
}

/*Blog page*/
.header-blog{
    text-align: center;
    max-width: 55rem;
    margin: 4rem auto;
    padding: 0 1rem;
}

.header-blog h1{
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-blog p{
    font-size: 1rem;
}

.blog-container{
    max-width: 55rem;
    margin: 3rem auto;
    padding: 0 1rem;
    display: grid;
    gap: 3rem;
}

.blog-post{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blog-post h2{
    color: green;
    margin-bottom: 0.5rem;
}

.blog-author{
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
}

.blog-img{
    width: 100%;
    border-radius: 0.5rem;
    max-height: 20rem;
    object-fit: cover;
}

/*Contact page*/

.header-contact{
    text-align: center;
    max-width: 55rem;
    margin: 4rem auto;
    padding: 0 1rem;
}

.header-contact h1{
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-contact p{
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-container{
    max-width: 55rem;
    margin: 3rem auto;
    padding: 0 1rem;
    display: grid;
    gap: 3rem;
}

.contact-info{
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-info h2{
    color: green;
    margin-bottom: 1rem;

}

.contact-info a{
    color: green;
    text-decoration: none;
}
.contact-info a:hover{
    text-decoration: underline
}

.contact-map-form{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form .form-row{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form .form-row label{
    text-align: left;
    font-weight: 500;
}

.contact-form input,
.contact-from textarea{
    width: 100%;
    padding: 0.8rem;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 0.6rem;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact-form textarea{
    min-height: 6rem;
    resize: vertical;
}

.contact-form .form-actions button{
    background-color: green;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.contact-form .form-actions button:hover{
    background-color: #0a7a0a;
}

.contact-form .form-actions button:active{
    transform: translateY(1px);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form button:focus{
    outline: 2px solid green;
    outline-offset: 2px;
}

/*Footer*/

.site-footer{
    background-color: #f5f5f5;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 1rem;
    border-top: 1px solid black;
    margin-top: 2rem;
}

.site-footer a{
    color: green;
    text-decoration: none;
    font-weight: 600;
}

.site-footer a:hover{
    text-decoration: underline;
}

/*Responsive*/

@media (max-width:768px){
    nav{
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-item__logo{
        height: 4rem;
        margin: 0.5rem 0;
    }

    .nav-item{
        padding: 0.5rem 0;
    }

    header > p{
        width: 90%;
        margin: 0 auto;
        padding: 0 1rem;
        font-size: .95rem;
    }

    .gerecht, .aanbod{
        flex-direction: column;
        text-align: center;
        margin: 2rem 1rem;
    }

    .gerecht-text, .aanbod-text{
        margin: 1rem  0 0 0;
        padding: 0 1rem;
    }

    .gerecht-img, .aanbod-img{
        height: auto;
        max-width: 100%;
    }

    .team{
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .team-card{
        aspect-ratio: 1 / 1;
        padding: 2rem;
    }

    .menu-grid{
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-item img{
        max-width: 80%;
    }

    .blog-container{
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .contact-container{
        flex-direction: column;
    }
   
    .reservering-form{
        width: 100%;
        padding: 0 1rem;
    }

    .site-footer{
        font-size: 0.85rem;
        padding: 1.5rem 1rem;
    }
    
}