@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
:root{
  --main-color:#808080;
  --black:#13131a;
  --bg:#010103;
  --border:.1rem solid rgba(255,255,255,.3);

    }

*{
  font-family: 'Roboto', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  outline: none; border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition:.2s linear;

}


html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;

}
html::-webkit-scrollbar{
  width:1rem;
}

html::-webkit-scrollbar-track{
  background:transparent;
}

html::-webkit-scrollbar-thumb{
  background:#fff;
  
}

body{
    background:var(--bg);
}

section{
  padding: 2rem 7%;

}

.heading{
  text-align:center;
  color:#fff;
  text-transform: uppercase;
  padding-bottom: 3.5rem;
  font-size: 4rem;
}

.heading span{
  color:var(--main-color);
  text-transform: uppercase;
}


.btn{
  margin-top: 1rem;
  display: inline-block;
  padding: .9rem 3rem;
  font-size: 2.5rem;
  color: #fff;
  background: var(--main-color);
  cursor: pointer;
}
.btn:hover{
  letter-spacing: .2rem;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    border-block-end: 1px solid var(--champagne-pink_20);
    position: fixed;
    top: 0; left:0; right:0;
     z-index: 1000;
  }
  
header.active {
    background-color: #13131a;
    position: fixed;
    top: -86px;
    background-color: var(--white);
    box-shadow: var(--shadow-1);
    animation: slideIn 0.5s ease-out forwards;
  }

header.logo img{
    height: 6rem;
}

header .navbar a{
    margin: 0 1rem;
    font-size: 1.6rem;
    color:#fff;
}

header .navbar a:hover{
  color:var(--main-color);
  margin-bottom: .1rem solid var(--main-color);
  padding-bottom: .5rem;
}

header .icons div{
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  margin-left: 2rem;

}

header .icons div:hover{
  color:var(--main-color);

}

#menu-btn{
  display: none;
}

header .search-form{
  position: absolute;
  top: 115%; right: 7%;
  background: #fff;
  width: 50rem;
  height: 5rem;
  display: flex;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
}
header .search-form.active{
  transform: scaleY(1);
}

header .search-form input{
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  color:var(--black);
  padding: 1rem;
  text-transform: none;
}
header .search-form label{
  cursor: pointer;
  font-size: 2.2rem;
  margin-right: 1.5rem;
  color:var(--black);

}
header .search-form label:hover{
  color: var(--main-color);
}
header .cart-items-container{  
  position: absolute;
  top:100%; right:-100%;
  height: calc(100vh - 9.5rem);
  width: 35rem;
  background: #fff;
  padding: 0 1.5rem;
} 
header .cart-items-container.active{
  right:0rem;
}
header .cart-items-container .cart-item{
  position: relative;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
header .cart-items-container .cart-item .fa-times{
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--black);
}
header .cart-items-container .cart-item .fa-times:hover{
  color:var(--main-color);
}
header .cart-items-container .cart-item img{
  height: 7rem;
}
header .cart-items-container .cart-item .content h3{
  font-size: 2rem;
  color: var(--black);
  padding-bottom: .5rem;
}
header .cart-items-container .cart-item .content .price{
  font-size: 1.5rem;
  color: var(--main-color);
}
header .cart-items-container  .btn{
  width: 100%;
  text-align: center;
}

.home{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image:url(wp9277593-cafe-4k-wallpapers.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    animation:  change-image 15s linear infinite;
    height: 400px;
    width: 100%;
    background-position: center;
  }

  .home .content{
    max-width: 60rem;
  position: relative;
  z-index: 10; /* keeps text above images */
  text-align: center; /* optional for nice centering */
  }

.ios-bg {
  display: none;
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeImages 25s infinite;
  z-index: 0;   /* 👈 always behind text */
}


.home .content h3{
  font-size: 10rem;
  text-transform: uppercase;
  color:#808080;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode',  Verdana, sans-serif;
  text-align: center;
}

.home .content p{
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.8;
  padding: 1rem 0;
  color:#808080;
}

.about .row{
  display:flex;
  align-items: center;
  background: var(--black);
  flex-wrap: wrap;
}
.about .row .image{
  flex:1 1 45rem;
}

.about .row .image img{
  width:100%;
}
.about .row .content{
  flex:1 1 45rem;
  padding:2rem;

}
.about .row .content strong{
  font-size: 3rem;
  color: #808080;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: #808080;
}
.about .row .content h3{
  font-size: 3rem;
  color:#808080;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color:#808080;
  
}
.about .row .content mark{
  background-color: transparent;
  color:#d3ad7f;
  font-size: 2.5rem;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode',  Verdana, sans-serif;

}
.about .row .content p{
  font-size: 2rem;
  color:#ccc;
  padding:1rem 0;
  line-height: 1.8;
  text-transform: none;
}






.menu .box-container{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
gap:1.5rem;
}

.menu .box-container .box{
  padding:5rem;
  text-align: center;
  border: var(--border);
}

.menu .box-container .box img{
  height:30rem;
}

.menu .box-container .box h3{
  color: #fff;
  font-size: 2rem;
  padding: 1rem 0;

}
.menu .box-container .box .price{
  color: #fff;
  font-size: 2.5rem;
  padding: .5rem 0;
}

.menu .box-container .box .price span{
  font-size: 1.5rem;
text-decoration: line-through;
}

.menu .box-container .box:hover{
  background: #808080;
}

.menu .box-container .box:hover >*{
  color: var(--black);
}

.contact .row{
  display: flex;
  background: var(--black);
  flex-wrap: wrap;
  gap:1rem;
}

.contact .row .map{
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;

}

.contact .row form{
  flex: 1 1 45rem;
  padding: 5rem 2rem;
  text-align: center;
  
}
.i4ewOd-pzNkMb-haAclf{
  display: none !important;
}
.contact .row form h3{
  text-transform: uppercase;
  font-size: 3.5rem;
  color: #fff;

}
.contact .row form .inputbox{
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: var(--bg);
  border: var(--border)
}

.contact .row form .inputbox span{
  color: #fff;
  font-size: 2rem;
  padding-left: 2rem;

}

.contact .row form .inputbox input{
  width: 100%;
  padding: 2rem;
  font-size: 1.7rem;
  color: #fff;
  text-transform: none;
  background:none;

}

.review .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap:1.5rem;
}
.review .box-container .box{
  border: var(--border);
  text-align: center;
  padding: 3rem 2rem;
}

.review .box-container .box p{
  font-size: 1.6rem;
  line-height: 1.8;
  color: #ccc;
  padding: 2rem 0;
}
.review .box-container .box .user{
  height: 30rem;
  width: 30rem;
  border-radius: 50%;
  object-fit: cover;
}
.review .box-container .box h3{
  padding: 1rem 0;
  font-size: 2rem;
  color: #fff;
}
.review .box-container .box .stars i{
  font-size: 1.5rem;
  color:var(--main-color)
}




.footer{
  background: var(--black);
  text-align: center;

}

.footer .share{
  padding: 1rem 0;
}

.footer .share a{
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  color: #fff;
  border: var(--border);
  margin: .3rem;
  border-radius: 50%;
}

.footer .share a:hover{
  background-color: var(--main-color);
}
.footer .credit{
  font-size: 2rem;
  color: #fff;
  font-weight: lighter;
  padding: 1.5rem;

}
.footer .credit span{
  color: var(--main-color);
}

.footer .links p{
  font-size: 3rem;
  color: var(--main-color);
  text-transform:lowercase;

}

.footer .links i{
  color: var(--main-color);
  font-size: 2rem;

}  
.footer .links a{
  text-align: center;
  color: #fff;
  font-family:"cursive" ,"Lucida Handwriting","Brush Script MT";
  font-size: 2rem;
  text-transform: lowercase;
}
.footer .links1 i{
  color: var(--main-color);
  font-size: 2rem;

}
.footer .links1 a{
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  font-size: 1.8rem;
  font-family: 'Courier New', Courier, monospace;

}



/*media queries*/
@media (max-width:991px ){

  html{
    font-size: 55%;
  }
header{
  padding: 1.5rem 2rem;

}
section{
  padding: 2rem;
}
.contact .row .map{
  width:550px;
  height:400px
} 

@media (max-width:768px){
  
  #menu-btn{
    display: inline-block;
} 
 }
header .navbar{
  position: absolute;
  top: 100%; right: -100%;
  background:#fff;
  width: 30rem;
  height: calc(100vh - 9.5rem);
}

header .navbar.active{
  right: 0;
}

header .navbar a{
  color: var(--black);
  display: block;
  padding: 1.5rem;
  margin: .5rem;
  font-size: 2rem;
}
header .search-form{
  width: 90%;
  right: 2rem;
}
.home{
  background-position: center;
  justify-content: center;
  text-align: center;
}


.home .content h3{
  font-size: 8rem;
}
.home .content p{
  font-size: 5rem;
} 



@media (max-width:450px ){

  html{
    font-size: 50%;
  
}
}
}

@keyframes change-image{
  0% {
    background-image: url(coffee_cappuccino_cup_136699_3840x2400.jpg);
  }
  25%{
    background-image: url(wp9277593-cafe-4k-wallpapers.jpg);
  }
  50%{
    background-image: url(coffee_cappuccino_cup_115928_3840x2400.jpg);
  }
  75%{
    background-image: url(coffee_drink_powder_119246_3840x2400.jpg);
  }
  100%{
    background-image: url(tony-lee-8IKf54pc3qk-unsplash.jpg);
  }
}
/* Hide fallback by default */
.ios-bg {
  display: none;
}

/* iOS Safari fallback */
@supports (-webkit-touch-callout: none) {
  .home {
    position: relative;
    overflow: hidden;
    background: none !important; /* disable broken bg animation */
  }

  .ios-bg {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeImages 25s infinite;
  }

  .ios-bg:nth-child(1) {
    background-image: url("coffee_cappuccino_cup_136699_3840x2400.jpg");
    animation-delay: 0s;
  }
  .ios-bg:nth-child(2) {
    background-image: url("wp9277593-cafe-4k-wallpapers.jpg");
    animation-delay: 5s;
  }
  .ios-bg:nth-child(3) {
    background-image: url("coffee_cappuccino_cup_115928_3840x2400.jpg");
    animation-delay: 10s;
  }
  .ios-bg:nth-child(4) {
    background-image: url("coffee_drink_powder_119246_3840x2400.jpg");
    animation-delay: 15s;
  }
  .ios-bg:nth-child(5) {
    background-image: url("tony-lee-8IKf54pc3qk-unsplash.jpg");
    animation-delay: 20s;
  }

  @keyframes fadeImages {
    0%, 20% { opacity: 1; }
    25%, 100% { opacity: 0; }
  }
}


