@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@1,200;1,300&display=swap');




:root{
    --yellow:#ffcc00;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    text-decoration: none;
    transition: .4s linear;
}
*::selection{
 background: var(--yellow);
 color: #fff;
}
html::-webkit-scrollbar{
    width: .7rem;
  
}
html::-webkit-scrollbar-track{
    background:#32312a;
}
html::-webkit-scrollbar-thumb{
    background: var(--yellow);
    border-radius: 1.3rem;
}  
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}
body{
    background: #100f0f;
}
section{
    padding:2rem  9%;
}
.btn{
    font-size: 1.7rem;
    display: inline-block;
    border: .2rem solid var(--yellow);
    padding: .8rem 3rem;
    cursor: pointer;
    color: #fcfaf0;
    border-radius: .7rem;
    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(--yellow);
    transition: .4s linear;
    z-index: -1;
}
.btn:hover::before{
   
width: 100%;
left: 0;
}
.heading{
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    font-size: 4rem;
    color: #fcfaf0;

}
.heading span{
    color: var(--yellow);
}
header{
    height: 7rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    background: #000000;
    padding: 2rem 9%;
    box-shadow: 0 .5rem 1rem rgba(174, 172, 172, 0.125);
}
header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color:#fcfaf0;
}
header .logo i{
    padding-right: .5rem;
    color: var(--yellow);
}
header .navbar a{
    font-size: 2rem;
    margin-left: 2rem;
    color:#ebdfa2;
    transition: all .3s ease-in;
}
header .navbar a:hover{
    color: var(--yellow);
}

#menu-bar{
    font-size: 3rem;
    cursor: pointer;
    color: #fcfaf0;
    border: .1rem groove #fcfaf0;
    border-radius: .3rem;
    padding: .5rem 1.5rem;
    display: none;
}
#menu-bar:hover{
    color: var(--yellow);
    border:.1rem groove var(--yellow) ;
}
.home{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    min-height: 100vh;
    align-items: center;
}

.home .content{
    flex: 1 1 40rem;
    padding-top: 6.5rem;
}
.home .image{
    flex: 1 1 50rem;
}
.home .image img{
    height: 100%;
    border-radius: 30%;
    width: 100%;
    margin-top: 9rem;
    padding: .5rem;
    animation: float 3s linear infinite;

}
@keyframes float{
    0%, 100%{
transform: translateY(0rem);
    }
    50%{
        transform: translateY(2rem);
    }
}
.home .content h3{
    font-weight:900;
    font-size: 5rem;
    color: #e4be00;
    font-family:'Crimson Pro', serif;
    
}
.home .content p{
    font-size: 1.8rem;
    color: #fcfaf0;
    padding: 2rem 0;
}
.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(247, 241, 241, 0.221);
    border: .2rem solid var(--yellow);
    cursor: pointer;
    border-radius: .7rem;
}

.speciality .box-container .box .image{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: -100%;
    left: 0;

}

.speciality .box-container .box .content{
    text-align: center;
    background:transparent;
    padding:2rem;
  }
  
  .speciality .box-container .box .content img{
    margin:1.5rem 0;
  }
  
  .speciality .box-container .box .content h3{
    font-size: 2.5rem;
    color:#ebdfa2;
  }
  
  .speciality .box-container .box .content p{
    font-size: 1.6rem;
    color:#ebdfa2;
    padding:1rem 0;
  }
  
  .speciality .box-container .box:hover .image{
    top:0;
  }
  
  .speciality .box-container .box:hover .content{
    transform: translateY(100%);
  }

.popular .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.popular .box-container .box{
    flex: 1 1 30rem;
    padding: 1rem;
    background: #100f0f;
    border: .1rem solid var(--yellow);
    box-shadow: 0 .5rem 1rem rgba(174, 172, 172, 0.125);
    border-radius: .5rem;
    text-align: center;
    position: relative;
}
.popular .box-container .box img{
    top: 0;
    height: 30rem;
    width: 100%;
    object-fit: cover;
    border-radius: .5rem;
}
.popular .box-container .box .price{
    position: absolute;
    top: 2rem;
    left: 2rem;
    padding: 1rem;
    font-size: 2rem;
    color: #fff;
    background: var(--yellow);
}
.popular .box-container .box h3{
    color: #ebdfa2;
    font-size: 3rem;
    padding-top: 1rem;
}
.popular .box-container .box .stars{
    color: gold;
    font-size: 1.7rem;
    padding: 1rem 0 ;
}
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0;
}
.steps .box{
    flex:1 1 25rem;
    padding: 1rem;
    text-align: center;
}
.steps .box img{
    border-radius: 50%;
    border: .8rem solid var(--yellow);
    box-shadow: 0 .5rem 1rem rgba(247, 241, 241, 0.221);
}
.steps .box h3{
    font-size: 2rem;
    color: #ebdfa2;
    padding: 1rem;
    box-shadow: 0 .5rem 1rem rgba(38, 36, 36, 0.221);
}

.gallery .box-container {
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 1.4rem;
}

.gallery .box-container .box{
    height:25rem;
    flex:1 1 33rem;
    border:.4rem solid var(--yellow);
    box-shadow: 0 .5rem 1rem rgba(247, 241, 241, 0.221);
    border-radius: .5rem;
    position: relative;
    overflow: hidden;
  }
  
  .gallery .box-container .box img{
    height:100%;
    width:100%;
    object-fit: cover;
  }
  
  .gallery .box-container .box .content{
    position: absolute;
    top:-100%; left:0;
    height: 100%;
    width:100%;
    background:rgba(0,0,0,.8);
    padding:2rem;
    padding-top: 5rem;
    text-align: center;
  }
  
  .gallery .box-container .box .content h3{
    font-size: 2.5rem;
    color:#ebdfa2;
  }
  
  .gallery .box-container .box .content p{
    font-size: 1.5rem;
    color:#ebdfa2;
    padding:1rem 0;
  }
  
  .gallery .box-container .box:hover .content{
    top:0;
  }
  .reviews .box-container{
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
  }
  .reviews .box-container .box{
      flex: 1 1 30rem;
      text-align: center;
      padding: 2rem;
      border: .4rem solid var(--yellow);
      box-shadow: 0 .5rem 1rem rgba(247, 241, 241, 0.221);
      border-radius: .7rem;
      background: rgb(255, 243, 167);
      margin-top: 6rem;
  }
  .reviews .box-container .box img{
      margin-top: -8rem;
      border-radius: 50%;
      height: 12rem;
      width: 12rem;
      border: .3rem solid var(--yellow);
      object-fit: cover;
  }
  .reviews .box-container .box h3{
      font-size: 2.5rem;
      padding-top: 1rem;

  }
  .reviews .box-container .box p{
      font-size: 1.4rem;
      padding: 1rem;
  }
  .reviews .box-container .box i{
      font-size:2rem ;
      color: gold;
      margin-top: 2rem;
      padding: 1.5rem;
      background: #fcfaf0;
      box-shadow: 0 .5rem 1rem rgba(0,0,0,.3);
  }
.order .row{
   padding: 2rem;
   box-shadow: 0 .5rem 1rem rgba(174, 172, 172, 0.125);
   background: transparent;
   display: flex;
   flex-wrap: wrap;
   gap: 1.2rem;
   border-radius: .5rem;
}
.order .row .image{
    flex: 1 30rem;

}
.order .row .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: .5rem;

}
.order .row form{
    flex: 1 1 50rem;
}
.order .row form .inputBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
   

}
.order .row form .btn{
    margin-top: 3rem;
   
}


.order .row form .inputBox input,
.order .row form textarea{
    background-color: #ebdfa2;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 1.7rem;
    color: #000;
    text-transform:capitalize;
    border: .3rem solid var(--yellow);
    width: 49%;
   
}
.order .row form textarea{
    width: 100%;
    resize: none;
    height: 15rem;
}

.footer{
    
    background: #342b00;
    text-align: center;
}
.footer .share{
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap-reverse;
}
.footer .credit{
    padding: 1rem 2rem;
    color: #ebdfa2;
    font-weight: normal;
    font-size: 2rem;
}
.footer .credit a:hover{
    text-decoration: underline;
}
#scroll-top{
    position: fixed;
    top: -120%;
    right: 2rem;
    padding: .5rem 1rem;
    font-size: 3rem;
    background: var(--yellow);
    color: #fcfaf0;
    border:.5rem ;
    transition: 1 linear;
    z-index: 1000;
}
#scroll-top.active{
    top:calc(100% - 12rem);
}


@media(max-width:991px){
    html{
        font-size: 55%;
       
    }
    header{
        padding: 2rem;
    }
    section{
        padding: 2rem;
    }
    .speciality .box-container .content img{
        margin-left:12rem;
        align-self: center;
        padding: 1.5rem;
        }
}

@media(max-width:768px){
    #menu-bar{
        display: initial;

    }
    header .navbar{
        height: 650%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        border-top: .1rem solid rgba(174, 172, 172, 0.125) ;
        clip-path: polygon(0 0,100% 0,100% 0, 100% 0,0 0);

    
    }
    .home .image img{
        margin-top: 2rem;
    }
   
  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(174, 172, 172, 0.125);
        border-left: 3rem solid var(--yellow);
        background: #131313;
        transition: .4s ease-in;
    }
    header .navbar a:hover{
        background:var(--yellow) ;
        border-left: .9rem solid #fff;
        color: #131313;

    }
    .speciality .box-container .content img{
        margin-left:15rem;
        align-self: center;
        padding: 1.5rem;
        }
}
@media(max-width:450px){
    html{
        font-size: 50%;
       
    }
    .order .row form .inputBox input{
        width: 100%;
    }
   
}
