/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
}
ul {
  list-style: none;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (max-width:732px){
   
}
:root {
  --main-color: #19c8fa;
}
/* End Global Rules */
/* start Header */
header{
   color: black;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   background-color: white;
}
header .container nav{
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 0;
}
header .container nav .name{
   font-size: 24px;
   font-weight: bold;
}
header .container nav .toggle-menu i:hover{
   transition: 0.3s;
   padding-bottom: 3px;
}
header .container nav ul{
   display: flex;
   gap: 25px;
   text-decoration: none;
}
header .container nav ul li a{
   color: black;
   text-decoration: none;
   font-size: 18px;
}
header .container nav ul li a:hover{
 transition: 0.3s;
 opacity: 0.7;
 border-bottom: #19c8fa 2px solid;
}
/* End Header */
/* Start Home */
.home{
   background-image: url(../Image/photo9.jpg);
   background-size: 80% 170%;
   background-position: center;
   height: 100vh;
   display: flex;
   align-items: center;
   color: white;
}
.home .container h1{
   font-size: 48px;
   text-align: center;
}
.home .container p{
   font-size: 24px;
   text-align: center;
   margin: 20px 0;
}
.home .container .btn{
   display: block;
   width: 150px;
   margin: 0 auto;
   padding: 10px 0;
   background-color: black;
   color: white;
   text-align: center;
   text-decoration: none;
   border-radius: 5px;
}
.home .container .btn:hover{
   transition: 0.3s;
   color: #19c8fa;
   letter-spacing: 2px;
}
/* End Home */
/* Start Our Menu */
.our-menu{
   background-color: white;
   padding: 50px 0;
}
.our-menu .container h2{
   font-size: 36px;
   text-align: center;
   margin-bottom: 25px;
}
.our-menu .container p{
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}
.our-menu  .menu-filters {
   display: flex;
   justify-content: center;
   gap: 30px;
   cursor: pointer; 
   padding-top: 20px;
 
}
.our-menu  .menu-filters button {
  border-radius: 40%;
  width: 90px;
  height: 50px;
  background-color: #EFF1F4;
  border-color: #EFF1F4 ;
}
.our-menu  .menu-filters button:first-child{
  background-color: black;
  color: white;
  border-color: black;
}
.our-menu  .menu-filters button:hover{
   transition: 0.3s;
   background-color: black;
   color: white;
   border-color: black;
}
.image-sec{
    background-color: white;
    padding-right: 85px ;
}
.image-sec .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 350px));
    gap: 20px;
    justify-content: space-between;
    
}
.image-sec .container .image{
    position: relative;
    border-radius: 10px;
    box-shadow: rgba(210, 105, 30, 0.647) 0px 5px 15px;
    height: 530px;
    overflow: hidden;
}

.image-sec .container .image img{
    width: 350px;
    height: 350px;
    overflow-y: hidden;
}
.image-sec .container .image img:hover{
    transition: 0.3s;
    transform: scale(1.1);
    overflow: hidden;
}
.image-sec .container .image h3{
  font-size: 24px;
  font-weight: bold;
  padding-top: 10px;
  padding-left: 10px;
  padding-bottom: 10px; 
}
.image-sec .container .image p{
  font-size: 15px;
  opacity: 0.7;
  padding-top: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
}
.image-sec .container .image span{
  text-align: center;
  display: block;
  padding: 10px;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 30px;
  background-color: black;
  color: white;
  padding-top: 20px;
}
.image-sec .container .image div{
    position: absolute;
    top: 87%;
    right: 9%;
    width: 83%;
    cursor: pointer;
}
/* End Image Section */
/* Start Story Section */
.story-section{
    background-color: #EFF1F4;
    padding: 100px 10px;
    display: flex;
    align-items: space-between;
}
.story-section .container h2{
    font-size: 36px;
    margin-bottom: 25px;
}
.story-section .container p{
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 40px;
    line-height: 1.5;
}
.story-section .story{
    display: flex;
    gap: 20px;
}
.story-section .story .img{
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
}
.story-section .story .img img{
    width: 300px;
    height: 300px;
    object-fit: cover;

}
.story-section .story .img:nth-child(2){
   padding-top: 35px;   
}
/* End Story Section */
/* Start Contact Section */
.contact{
    background-color: #EFF1F4;
    padding: 100px 10px;
}
.contact .h2{
    font-size: 36px;
    margin-bottom: 25px;
     text-align: center;
    padding-bottom: 70px;
}
.contact .contact-info {
  display: flex;
  justify-content: space-around;
}
.contact .contact-info .info{
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact .contact-info .info i{
    font-size: 24px;
    text-align: center;
}
.contact .contact-info .info p{
    font-size: 18px;
}
.pad{
  width: 100%;
 height: 100px;
 background-color: black;
 font-size: 18px;
  color: white;
  text-align: center;
  padding-top: 50px;
}