@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root{
  --red:#ff3838;
}

*{
  font-family: 'Nunito', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  outline: none; border:none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.5s linear;
}

*::selection{
  background:var(--red);
  color:#fff;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body{
  background:#f7f7f7;
}

section{
    padding:2rem 9%;
}

.heading{
    text-align: center;
    font-size: 3.5rem;
    padding:1rem;
    color:#666;
}
  
.heading span{
    color:var(--red);
}


header{
    position: relative;
    top:0; left: 0; right:0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:#fff;
    padding:2rem 9%;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color:#666;
}
  
header .logo i{
    padding-right: .5rem;
    color:var(--red);
}
  
header .navbar a{
    font-size: 2rem;
    margin-left: 1rem;
    color:#666;
}
  
header .navbar a:hover{
    color:var(--red);
}

#menu-bar{
    font-size: 3rem;
    cursor: pointer;
    color:#666;
    border:.1rem solid #666;
    border-radius: .3rem;
    padding:.5rem 1.5rem;
    display: none;
    text-align: right;
}

.home{  
    /*display: flex;*/
    flex-wrap:unset;
    gap:1.5rem;
    min-height: 100vh;
    /*align-items:flex-start;*/
    background:url(../images/home-bg.jpg) no-repeat;
    background-size:cover;
    background-position: center;
}



.home .content{
    flex:1 1 65rem;
    padding-top: 15rem;
}
.home .order_but{
  padding-top: 5rem;
}

.home .image{
    flex:1 1 55rem;
}
  
.home .image img{
    width:50%;
    padding-right: 33rem;
    padding-top: 10rem;
    padding-left: 0rem;
    animation:float 5s linear infinite;
}
/* make imgage in homepage move up and don0wn*/ 
@keyframes float{
  0%, 100%{
    transform: translateX(18rem);
  }
  45%{
    transform: translateY(3rem);
  }
}
.home .content h3{
  font-size: 5rem;
  color:rgb(136, 130, 115);
  padding-top: 1rem;
  padding-left: 0rem;
  font-size: 55px;
}

.home .content p{
  font-size: 2rem;
  color:rgb(248, 134, 3);
  padding:1rem 0;
  padding-left: 0rem;
  padding-right: 50rem;
  text-align: center left ;
  font-weight: 600;
}

.btn{
  display:inline-block;
  padding:.6rem 1.5rem;
  border:.4rem solid red;
  color:red;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: .1rem;
  position:relative;
  overflow: auto;
  z-index: 0;
  margin-top: 1rem;
  font-weight: bold;
}
.btn::before{
  content: '';
  position: absolute;
  top:0; right: 0;
  width:0%;
  height:100%;
  background: red;
  transition: 0.5s linear;
  z-index: -1;
}

.btn:hover::before{
  width:100%;
  left: 0;
}

.btn:hover{
  color:rgb(53, 53, 12);
}

.speciality .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.speciality .box-container .box{
  flex:1 1 30rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  border:.2rem solid rgba(0,0,0,.3);
  cursor: pointer;
  border-radius: .8rem;
}

.speciality .box-container .box .image{
  height:100%;
  width:100%;
  object-fit: cover;
  position: absolute;
  top:0; left:-100%;
}

.speciality .box-container .box .content{
  text-align: center;
  background:#fff;
  padding:2rem;
}

.speciality .box-container .box .content img{
  margin:1.5rem 0;
}

.speciality .box-container .box .content h3{
  font-size: 2.5rem;
  color:#333;
}

.speciality .box-container .box .content p{
  font-size: 1.5rem;
  color:#666;
  padding:1rem 0;
}


.speciality .box-container .box:hover .image{
  left:0;
}
.speciality .box-container .box:hover .content{
  transform: translateY(120%);
}


.popular .box-container{ /* chia thanh tung o vuong nho*/
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.popular .box-container .box{
  padding:2rem;
  background:#fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  border:.1rem solid rgba(0,0,0,.3);
  border-radius: .8rem;
  text-align: center;
  flex:1 1 30rem;
  position: relative;
}

.popular .box-container .box img{
  height:20rem;
  object-fit: cover;
  width:100%;
  border-radius: .8rem;
}


.popular .box-container .box .price{
  position: absolute;
  top:3rem; left:3rem;
  background:var(--red);
  color:#fff;
  font-size: 2rem;
  padding:.5rem 1rem;
  border-radius: .5rem;
}
.popular .box-container .box h3{
  color:#333;
  font-size: 2.5rem;
  padding-top: 1rem;
}

.popular .box-container .box .stars i{
  color:hotpink;
  font-size: 1.5rem;
  padding:1rem .1rem;
}
.popular .box-container .box .item-info{
  font-size: 1.5rem;
  color:#333;
}


.steps{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
  padding:1rem;
}

.steps .box{
  flex:1 1 25rem;
  padding:1rem;
  text-align: center;
}

.steps .box img{
  border-radius: 50%;
  border:1rem solid #fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

.steps .box h3{
  font-size: 3rem;
  color:#333;
  padding:1rem;
}

.gallery .box-container{ /* sap xep theo tung o vuong ke nhau*/
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.gallery .box-container .box{
  height:25rem;
  flex:1 1 30rem;
  border:1rem solid #fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  border-radius: .8rem;
  position: relative;
  overflow: hidden;
}

.gallery .box-container .box img{ /* lam dep, muot hinh`*/
  height:100%;
  width:100%;
  object-fit: cover;
}

.gallery .box-container .box .content{
  position: absolute;
  top:-110%; left:0;
  height: 100%;
  width:100%;
  background:rgba(255,255,255,.9);
  padding:2rem;
  padding-top: 5rem;
  text-align: center;
}

.gallery .box-container .box .content h3{
  font-size: 2.5rem;
  color:#333;
}

.gallery .box-container .box .content p{
  font-size: 1.5rem;
  color:#666;
  padding:1rem 0;
}

.gallery .box-container .box:hover .content{ /* hinh` truot xuong tu ben tren*/
  top: 0px;;
}


.review .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.review .box-container .box{
  text-align: center;
  padding:2rem;
  border:1rem solid #fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.3);
  border-radius: .7rem;
  flex:1 1 30rem;
  background:#333;
  margin-top: 6rem;
  position: relative;
  overflow: clip;
}

.review .box-container .box img{
  height: 12rem;
  width:12rem;
  border-radius: 50%;
  border:1rem solid rgb(109, 206, 114);
  margin-top: 0rem;
  object-fit: cover;
}


.review .box-container .box h3{
  font-size: 2.5rem;
  color:#fff;
  padding:.5rem 0;
}

.review .box-container .box .stars i{
  font-size: 2rem;
  color:hotpink;
  padding:.5rem 0;
}

.review .box-container .box p{
  font-size: 1.5rem;
  color:#eee;
  padding:1rem 0;
}


.order .row{
  padding:2rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  background:#fff;
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
  border-radius: .5rem;
}

.order .row .image{
  flex:1 1 30rem;
}

.order .row .image img{
  height: 100%;
  width:100%;
  object-fit: cover;
  border-radius: .5rem;
}

.order .row form{
  flex:1 1 50rem;
  padding:1rem;
}

.order .row form .inputBox{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.order .row form .inputBox input, .order .row form textarea{
  padding:1rem;
  margin:1rem 0;
  font-size: 1.7rem;
  color:#333;
  text-transform: none;
  border:.1rem solid rgba(0,0,0,.3);
  border-radius: .5rem;
  width:49%;
}

.order .row form textarea{
  width:100%;
  resize: none;
  height:15rem;
}


.order .row form .btn{
  background:none;
}

.order .row form .btn:hover{
  background:var(--red);
}


.cart-header {
  font-weight: bold;
  font-size: 2rem;
  color: #333;
}


.cart-column {
  display: flex;
  align-items: center;
  border-bottom: 1px solid black;
  margin-right: 1.5rem;
  padding-bottom: 10px;
  margin-top: 10px;
}

.cart-row {
  display: flex;
}

.cart-item {
  width: 47%;
  font-size: 1.6rem;
  color: #333;
}

.cart-price {
  width: 25%;
  font-size: 1.75rem;
  color: #333;
}

.cart-quantity {
  width: 25%;
  font-size: 1.6rem;
  color: #333;
}

.cart-item-title {
  color: #333;
  margin-left: .5rem;
  font-size: 1.6rem;
}

.cart-item-image {
  width: 75px;
  height: auto;
  border-radius: 10px;
}

.cart-quantity-input {
  height: 34px;
  width: 50px;
  border-radius: 5px;
  border: 1px solid #56CCF2;
  background-color: #eee;
  color: #333;
  padding: 0;
  text-align: center;
  font-size: 1.5em;
  margin-right:auto;
}

.cart-row:last-child {
  border-bottom: 1px solid black;
}

.cart-row:last-child .cart-column {
  border: none;
}

.cart-total {
  text-align: end;
  margin-top: 10px;
  margin-right: 10px;
  font-size: 2.5rem;
}

.cart-total-title {
  font-weight: bold;
  font-size: 2rem;
  color: black;
  margin-right: 20px;
}

.cart-total-price {
  color: #333;
  font-size: 1.75rem;
}

.cart{
  position: fixed;
  height: 100vh;
  width: 400px;
  right: 0;
  top: 0;
  background-color: rgb(236, 158, 56);
  padding: 12px 20px;
  overflow-y:scroll ;
  right: -100%;
  transition: all 0.8s ease;
}
.cart i{
  cursor: pointer;
  font-size: 2rem;
}
.cart-icon{
  font-size: 4rem;
  cursor: pointer;
  position: fixed;
  top:-120%;
}
#cart-icon.active{
  top:calc(100% - 8rem)
}
#order_section.active{
  top:calc(100% - 8rem)
}

.btn-purchase {
  display: block;
  /* margin-left: 1100px ; */
  color: white;
  background-color: #56CCF2;
  border: none;
  border-radius: .5em;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
}
.btn-cart{
  color: white;
  background-color: #EB5757;
  border: none;
  border-radius: .3em;
  font-weight: bold;
}
.btn-cart:hover {
  background-color: #CC4C4C;
}

.btn-primary {
  color: white;
  background-color: #56CCF2;
  border: none;
  border-radius: .3em;
  font-weight: bold;
}
.btn-primary:hover {
  background-color: #2D9CDB;
}
.btn-danger {
  color: white;
  background-color: #56CCF2;
  border: none;
  border-radius: .3em;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-left: 10rem;
}

.btn-danger:hover {
  background-color: #2D9CDB;
}
.footer{
  background:#000;
  text-align: center;
}

.footer .share{
  display: flex;
  gap:1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .contact{
  padding:1rem 1rem;
  color:hotpink;
  font-weight: normal;
  font-size: 1.6rem;
}

.footer .credit{
  padding:1.5rem 1rem;
  color:#fff;
  font-weight: normal;
  font-size: 2rem;
}


.footer .credit span{
  color:hotpink;
}

#scroll-top{
  position: fixed;
  top:-120%;
  right:2rem;
  padding:.25rem 0.8rem;
  font-size: 4rem;
  background:yellowgreen;
  color:#fff;
  border-radius: .5rem;
  transition: 0.7s linear;
  z-index: 1000;
}

#scroll-top.active{
  top:calc(100% - 8rem)
}



/* media queries  */

@media(max-width:991px){

    html{
      font-size: 55%;
    }
  
    header{
      padding:2rem;
    }
  
    section{
      padding:2rem;
    }
  
}


@media(max-width:768px){
  html{
    font-size: 50%;
  }
    #menu-bar{
      text-align: center;
      display: initial;
    }
  
    header .navbar{
      position:initial;
      top:100%; left: 0; right:20px;
      background: #f7f7f7;
      border-top: .1rem solid rgba(0,0,0,.1);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
  
    header .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
  
    /* header .navbar a{
      margin: 1.5rem;
      padding:1.5rem;
      display: block;
      border:.2rem solid rgba(0,0,0,.1);
      border-left:.5rem solid var(--red);
      background:#fff;
    } */
  
}
  
@media(max-width:500px){
  
    html{
      font-size: 40%;
    }
  
    .order .row form .inputBox input{
      width:100%;
    }
  
}