html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body{
     font-family: "Gloria Hallelujah", cursive;
     background-color: #FFF7F9;
}
img{
    width: 100%;
}
#menubar{
    display: none;
}
header{
    width: 100%;
    background-color:#d94f8f;
    border-bottom: 2px solid white;
    position: fixed;
    z-index: 5;
}


.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    padding: 10px 0;
}
.navbar a{
    color: white;
}
.nav_links{
    display: flex;
}
.nav_links li{
    margin-left: 15px;
    color: white;
    padding: 5px 15px;
    border-radius: 10px;
    transition: .5 all ease-in-out;
    font-weight: bold;
}

.nav_links li:hover{
    background-color: #e02680;
}

.logo{
    color: white;
    font-family: "Gloria Hallelujah", cursive;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 3px;
}





.homepage{
    height: 100vh; 
    width: 100%;
    background: url(images/slayt.png);
    background-position: center;
    background-size: cover;
}
.homepage_home{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    padding-top: 100px;
}
.homepage_child{
    flex-basis: 50%;
}
.homepage_child img{
    width: 80%;
    animation: fadeInLeft 1.5s ease forwards;
}
.homepage h1{
    font-size: 4rem;
    color:#d94f8f;
    text-shadow: 8px 5px 5px #FFF;
    animation: fadeInUp 1.5s ease forwards;
    font-family: "Gloria Hallelujah", cursive;
}
.homepage p{
    font-size: 1.2rem;
    letter-spacing: 1.2px;
    margin-bottom: 30px;
    color: #333;
    text-shadow: 1px 1px 1px #b34a7c;
    animation: fadeInUp 1.8s ease forwards;
    font-family: "Gloria Hallelujah", cursive;
}
.homepage_btn{
    padding: 10px 10px;
    background-color: #d94f8f;
    border-radius: 25px;
    color: white;
    border: none;
    font-weight: bold;
  /*  margin: 20px 10px; */
    cursor: pointer;
    transition: all .3s ease;
}
.homepage_btn:hover{
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3); 
    background: #c03d7a;
}
.menu{
    display: flex;
    align-items:center;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    padding-top: 60px;
}
.menu_items{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align:center;
    flex-basis: 49%;
}
.menu_item{
    flex-basis:30%;
}
.menu_item .resim{
    width: 100%;
    border-radius: 50%;
    border: 6px solid #d94f8f;
    transition: 0.5s all ease-in;
}
.menu_item .resim:hover{
    transform: translateY(-5px) scale(1.05);
    cursor: pointer;
}
/* #about{
    padding:40px;
} */
#about h2{
    font-size: 1.8rem;
    color:#d94f8f;
    text-align: center;
    padding-bottom: 20px;
}

.about p{
    font-size: 1rem;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    line-height: 2;
}
.about p:nth-child(3){
    padding-top: 30px;
    padding-bottom: 40px;
    color:#e02680;
}
#products{
    background-color: #d94f8f;
    /* padding-top: 20px; */
    /* padding-bottom: 120px; */
}
#products h2{
    font-size: 2.5rem;
    color:white;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
}
.products{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
    flex-wrap: wrap;
    /* border: 5px solid red; */
    padding-bottom: 50px;
}
.product{
    flex-basis: 23%;
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s all ease;
    transform: translateY(10px);
}
.product img{
    width: 100%;
    border-radius: 10px;
}
.product:hover{
    transform: translateY(-5px) scale(1.05);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    cursor: pointer;
}
.product h3{
    color: #d94f8f;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: bolder;
    padding-bottom: 10px;
}
.product p{
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.5;
}



#recipes{
    padding-top:30px;
    padding-bottom: 50px;
}
#recipes>p{
    font-size: 1.3rem;
    text-align: center;
    width: 70%;
    margin: 0 auto;
    line-height: 1.5;
    color: #d94f8f;
    padding-top: 70px;
}
#recipes h2{
    font-size: 3rem;
    color:#d94f8f;
    text-align: center;
    /* padding-top: 20px; */
    padding-bottom: 20px;
}
.recipes{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
    /* border: 5px solid red; */
    flex-wrap: wrap;
}
.recipe{
    flex-basis: 23%;
    background-color:#FFF;
    padding: 20px;
    border-radius: 15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s all ease;
    transform: translateY(10px);
}
.recipe:hover{
    transform: translateY(-5px) scale(1.05);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    cursor: pointer;
}
.recipe img{
    width: 100%;
    border-radius: 15px;
}
.recipe h3{
    color: #d94f8f;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: bolder;
    padding-bottom: 10px;
    line-height: 1.5;
}
.recipe p{
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.5;
}



/* .map{padding: 60px 0;} */

.contact ul{
    padding-top: 20px 0;
    line-height: 2;
}

.contact h2{
    font-size: 3rem;
    color:#d94f8f;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 30px;
}
.contact ul li,.contact p{
    text-align: center;
}
footer{
    background:#d94f8f; 
    text-align:center; 
    padding:30px 0; 
    color:#FFF;
}
footer .social-icons{
    text-align: center;
    padding:0 10px; 
}
footer .social-icons a{    
    color:#FFF; 
    font-size:1rem; 
    transition:0.3s;
}
footer .social-icons a:hover{
    color:#c03d7a;
}
footer a{
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
}

.uparrow{
    position: fixed;
    right: 10px;
    bottom: 20px;
    cursor: pointer;
    width:40px;
    height:40px;
}


@keyframes fadeInLeft{
    from{opacity:0; 
        transform:translateX(50px);
    } to{
        opacity:1; 
        transform:translateX(0);
    }
} 


@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }to{
        opacity: 1;
        transform:translateY(0);
    }
}

@media (min-width:200px) and (max-width:450px){
   
    #menubar{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 20px;
        width: 30px;
        height: 30px;
        color: white;
    }

    .navbar{
       display: flex;
       align-items: center;
       justify-content: space-between;
        width: 100%;
    }

    .nav_links{
        display: flex;
        flex-direction: column;
        background-color: #d94f8f;
        position: absolute;
        top: 86px;
        left: 0;
        text-align: center;
        line-height: 2;
        width: 100%;
    }
    .nav_links li{
        padding: 0;
        width: 100%;
        margin-left: 0;
    }
    .nav_links li:hover{
        background-color: #e02680;        
        border-radius: 0;
    }
    .nav_links li a{
        color: white;
    }
    .logo{
        color: white;
        font-family: "Gloria Hallelujah", cursive;
        font-size: 13px;
    }



/* style.css den alindi   */




.homepage_home{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    flex-basis: 100%;
}
.homepage_child{
       flex-basis: 100%;
       margin: 0 auto;
}
.homepage{
    font-size: 1.5rem; 
}
.homepage_home{
    padding-top:50px;
}
.homepage_child h1{
    font-size: 3rem; 
    padding-bottom: 30px;  
    line-height:1.5;
    letter-spacing:3px;
}
.homepage_child p{
    line-height: 1.5;
}
.homepage_btn{
    font-size: 12px;
    margin:0;
    margin-bottom: 30px;
    padding: 7px 12px;
}
.menu{
    flex-direction: column;
    padding-top:150px;
}
#about h2{
    line-height:1.5;
}
.about{
    width: 100%;
}
.about p{
    width: 85%;
}
#products{
    padding-top: 0;
    padding-bottom:20px;
}
#products h2{
    padding-top: 0;
    padding-bottom: 20px;
    line-height:1.5;
}
.product{
    flex-basis: 100%;
    margin-bottom: 20px;
}

#recipes{
    padding-top:10px;
    padding-bottom: 30px;
}
#recipes>p{
    padding-top: 30px;
}
#recipes h2{
    padding-top: 20px;
    padding-bottom: 20px;
    line-height:1.5;
}
.recipe{
    flex-basis: 100%;
    margin-bottom: 20px;
}

.uparrow{
    position: fixed;
    right: 10px;
    bottom: 20px;
    cursor: pointer;
}

   

   





}




