@import url('https://fonts.googleapis.com/css2?family=Happy+Monkey&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Pirata+One&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(255, 255, 255);
    font-family: "PT Sans", sans-serif;
    font-size: 20px;
}
/* Nav-Bar Start */
.header{
    display: flex;
    padding: 10px;
    width: 100%;
    justify-content: space-between;
    height: auto;
}
.nav-links{
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}
.nav-links a, li{
    text-decoration: none;
    color: black;
    margin-right: 0.5rem; 
    font-weight: 600;
}
.nav-bar a,li:hover{
text-shadow: 3px;
font-size: 20px;
}
.nav-bar img{
    width: 8rem;
    height: auto;
}
/* Nav-Bar End */
/* Food-Container Start */
.wrap{
    width: 100%;
}
.food-categories{
    display: flex;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    justify-content: space-around;
    padding: 5px;
    align-items: center;
    list-style: none;
}
.food-categories li {
    font-weight: bold;
}
.food-container{
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 max-width: 1200px;
 gap: 30px;  
 margin : 2rem auto; 
}
.food{
    position: relative;
    text-align: center;
    background-color: gray;
    
}
.food img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.food p{
    position:absolute;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    bottom: 0;
    padding: 1rem 0;
}

/* Food-Container End */
/* Footer Start */
.footer-nav-bar{
    background-color: black;
    height: auto;
    width: 100%;
}

.footer{
    display: flex;
    list-style: none;
    padding-top: 5px;
    justify-content: center;
    gap: 7%;
    
}

.footer a, li{
    color: white;
    font-size: 15px;
    text-decoration: none;
}
.footer li{
    color: white;
}

.footer-nav-bar p {
    color: rgb(255, 255, 255);
   text-align: center;
   font-size: 18px;
   margin-top: 1rem;
   
}


.social-icons{
    color: white;
    display: flex;
    justify-content: center;
    margin-top: 18px;
    gap: 20px;
}
.social-icons a {
    color: white;
}
/* Footer End */

@media (max-width: 576px){
    .food-container{
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 576px) and (max-width:992px){
    .food-container{
        grid-template-columns:  repeat(2, 1fr);
    }
}

/* Recipe of the month
-----------------------
Recipe Container start*/
h1{
    font-family:"PT Sans", sans-serif;
}
.recipe-container {
   text-align: center;
   margin-bottom: 1rem;
   width: 100%;

}
.recipe-container h1{
    font-family:"PT Sans", sans-serif;
    text-align: center;
    margin-top: 2rem;
}
.recipe-container h3{
    margin: 1rem;
}
.recipe-container h3{
    font-weight: 600;
}
.food-categories a, li{
    text-decoration: none;
    color: black;
}
.schnitzel{
    margin: 2rem auto;
    width: 70%;
}
.text-container li{
    font-size: 20px;

}
/* About us */
.about-container h1{
    margin-top: 3rem;
    padding: 5px;
    font-weight: 500;
    color: rgb(0, 0, 85);
}

.about-container h2{
    margin-top: 3rem;
    padding: 15px;
    font-weight: 500;
}
.about-container h3{
    margin-top: 4rem;
    padding: 15px;
    font-weight: 500;
    color: rgb(17, 97, 17);
}
.grid-about{
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2s, 1fr);
    gap: 7rem;
    padding: 10rem;
}
.grid-about img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.box2{
    grid-row: 1/3;
}
.box3{
    padding-bottom: 10rem;
}

@media (max-width: 576px){
    .grid-about{
    grid-template-columns: repeat(1, 1fr);
  }
}