@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,700;1,300;1,400&display=swap');
:root{
    --red:#ff3838;
}
*{
    font-family: 'Lato', sans-serif;
    margin:0;
    padding:0;
    box-sizing: border-box;
    outline:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}
*::selection{
    background:var(--red);
    color:#fff;
}
html{
    font-size:62.5%;
    scroll-behavior: smooth;
    scroll-padding-top:6rem;
}
body{
    background:#f7f7f7;
}
header{
    position: fixed;
    top:0;
    left:0;
    right:0;
    z-index:100;
    display: flex;
    justify-content:space-between;
    align-items: center;
    background:#fff;
    padding:2rem 9%;
    box-shadow:0.5rem 0.4rem rgba(0,0,0,.1);
}
header .logo{
    font-size:2.5rem;
    font-weight: bolder;
    color:#666;
}
.logo #logo-o{
    color:var(--red);
    font-weight: bolder;
    font-size:3rem;
}
header .logo i{
    padding-right:.5rem;
    color:var(--red);
}
header .navbar a{
    font-size:2rem;
    color:#666;
    margin-left:2rem;
}
header .navbar.active{
   clip-path: polygon(0 0,100% 0,100% 100%,0% 100%);
}
header .navbar a:hover{
   color:var(--red);
}
header #menu-bar{
    font-size:3rem;
    cursor: pointer;
    color:#333;
    border:1px solid #333;
    border-radius:.3rem;
    padding:.1rem 1.2rem;
    display: none;
}
/* ------------------------------------------------------------------------------------------ */
section{
    padding:1rem 7%;
    display: flex;
    justify-content: space-between;
}
.home{
    display: flex;
    justify-content: center;
    align-items: center;
     min-height:100vh;
    background:url('./images/home-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}
.home .content{
     flex:1 1 70rem;
}
.home .content h3{
    font-size:5rem;
    color:#333;
}
.home .content p{
    font-size:1.8rem;
    color:#666;
}
.home .image img{
  width:100%;
  padding:3rem;
  animation:float 3s linear infinite;
}
@keyframes float {
    0%,100%{
        transform: translateY(0rem);;
    }
    50%{
        transform: translateY(3rem);
    }
}
 .btn{
    display: inline-block;
    border:2px solid #666;
    padding:8px 6px;
    font-size:2rem;
    cursor: pointer;
    border-radius:7px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-top:1rem;
}
.btn::before{
    content: '';
    position: absolute;
    top:0;
    right:0;
    width:0%;
    height:100%;
    background:var(--red);
    transition: .2s linear;
    z-index:-1;
}
.btn:hover::before{
    width:100%;
    left:0;
}
.btn:hover{
    color:#fff;
    font-weight: bolder;
}
/* -------------------------------------------------------------------------------------------- */
.heading{
    text-align:center;
    font-size:3rem;
    color:#666;
    padding:20px 0;
}
#gallery{
    font-size:5rem;
    font-weight:bold;
}
#review{
    font-size:5rem;
}
#order{
    font-size:5rem;
}
.heading span{
    color:var(--red);
}
.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);
    cursor: pointer;
}
.speciality .box-container .box p{
    font-size:1.5rem;
    color:#333;
}
.speciality .box-container .box h3{
    font-size:2.5rem;
    color:#666;
    padding:1rem 0;
}
.speciality .box-container .box .image{
    height:100%;
    width:100%;
    object-fit: cover;
    position: absolute;
    top:-100%;
    left:0;
}
.speciality .box-container .box:hover .image{
   top:0;
}
.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:hover .content{
    transform: translateY(100%);
   
}

/* ---------------------------------------------------------------------------------- */
.popular .box-container{
    display: flex;
    gap:1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.popular .box-container .box{
  padding:2rem;
  background-color:#fff;
  box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  border:.1rem solid rgba(0,0,0,.3);
  border-radius:.5rem;
  text-align:center;
  flex:1 1 40rem;
  position: relative;
  margin:0 13px;
}
.popular .box-container .box img{
    object-fit:cover;
    width:100%;
}
.popular .box-container .box .price{
 position: absolute;
 top:3rem;
 left:3rem;
 background-color: var(--red);
 padding:1rem 1.5rem;
 border-radius:.5rem;
 font-size:2rem;
}
.popular .box-container .box  h3{
    color:#333;
    font-size:2.5rem;
}
.popular .box-container .box .stars{
    color:rgb(255, 217, 0);
    font-size:2rem;
}

/* ---------------------------------------------------------------- */
.steps{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    padding:1rem 0;
    background-color: #ffff;
}
.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 1em rgba(0,0,0,.1);
}
.steps .box h3{
    font-size:2.5rem;
    color:#333;
    padding:1rem 0;
}
/* -------------------------------------------------------------- */
.gallery .heading{
    background-color: aqua;
   position:relative;
   text-align:center;
  display: inline-block;
   margin:12px 0;
}
.gallery .box-container{
    overflow: hidden;
  display: grid;
  grid-template-columns: auto auto auto;
} 
.gallery .box-container .box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding:12px;
    border:1px solid #333;
    border-style: none;
    box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
    margin:15px 18px;
    overflow: hidden;
    background-color: #fff;
}
.gallery .box-container .box h3{
    font-size:3rem;
    color:#333;
}
.gallery .box-container .box p{
    font-size:1.5rem;
    color:#666;
}
.gallery .box-container .box img{
    height:33vh;
}


.review .box-container{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    margin-top:38px;
}
.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:.5rem;
    flex:1 1 30rem;
    background:#333;
}
.review .box-container .box img{
    height:12rem;
    width:12rem;
    border-radius:50%;
    border:0.5rem solid #fff;
    margin-top:-8rem;
    object-fit: cover;
}
.review .box-container .box h3{
    font-size:2.5rem;
    color:#fff;
    padding:.5rem 0;
}
.review .box-container .box p{
    font-size:1.5rem;
    color:#fff;
    padding:.5rem 0;
}
.review .box-container .box .stars i{
   font-size:2rem;
   color: turquoise;
   padding:.5rem 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;
}
.order .row .image{
    flex:1 1 30rem;
}
.order .row form{
    flex:1 1 30rem;
    padding:1rem;
}
.order .row img{
    height:100%;
    width:100%;
    object-fit: cover;
    border-radius:.5rem;
}
.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);
}

.footer{
    background:#000;
    text-align:center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.footer .share{
    display: flex;
    gap:1.5rem;
    justify-content:center;
    flex-wrap: wrap;
}
.footer .share .btn{
    border:1px solid var(--red);
}
.footer .credit{
    color:#fff;
    padding:2rem 1rem;
    font-size:2rem;
}
.credit span{
    color:aqua;
}