/* Navbar Section */
@import url('https://fonts.googleapis.com/css2?family=Redressed&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all .2s ease-out;
    scroll-behavior: smooth;
}
  
  .navbar{
    background: crimson;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}
  
  .navbar-container{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}
  
  #navbar-logo{
    font-family: 'Redressed', cursive;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    width: 300px;
    height: 82px;
}

.nevbar-menu{
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar-item{
    height: 80px;
}

.navbar-links{
    font-family: 'Kumbh Sans', sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    text-decoration: none;
    height: 100%;
    transition: all 0.5s ease;
    font-size: 18px;
}

.navbar-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    font-size: 18px;
}

.button{
  font-family: 'Kumbh Sans', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 5px;
    background: #833ab4;
    background: -webkit-linear-gradient(to right, #fcb045, #fd1d1d, #833ab4);
    background: linear-gradient(to right, #fcb045, #fd1d1d, #833ab4);
    color: #fff;
    transition: all 0.5s ease;
}

.navbar-links:hover{
    color: greenyellow;
    transition: all 0.5s ease;
}

@media screen and (max-width: 390px){
  #navbar-logo{
    font-family: 'Redressed', cursive;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    width: 250px;
    height: 85px;
}
}

@media screen and (max-width: 1349px) {
    .navbar-container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
      }
    
      .nevbar-menu{
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1;
      }
    
      .nevbar-menu.active{
        background: crimson;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 60vh;
        font-size: 1.6rem;
      }
    
      #navbar-logo{
        padding-left: 25px;
      }
    
      .navbar-toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
      }
    
      .navbar-item{
        width: 100%;
      }
    
      .navbar-links{
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
      }
    
      .navbar-btn{
        padding-bottom: 2rem;
      }
    
      .button{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
      }
    
      #mobile-menu{
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
      }
    
      .navbar-toggle .bar{
        display: block;
        cursor: pointer;
      }
    
      #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
      }
    
      #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
      }
    
      #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
      }
    }

/* Hero Section */

.main-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  height: 85vh;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.main-content h1{
  font-family: fantasy;
  font-size: 7rem;
  background-color: #ff8177;
  background-image: linear-gradient(to top, #ff0844 0%, #ff3c00 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.main-container h2{
  font-family: fantasy;
  font-size: 5rem;
  background-color: crimson;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.main-content P{
  color: #fff;
  background-image: linear-gradient(to top, #ff0844 0%, #ff3c00 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  margin-top: 1rem;
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.main-btn{
  font-size: 2rem;
  background-image: linear-gradient(to top, #f77062 0%, #fe5196 100%);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  color: #fff;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.5s ease-out;
  outline: none;
}

.main-btn a{
  position: relative;
  z-index: 2;
  color: #fff;
  text-decoration: none;
}

.main-btn:after{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #4837ff;
  transition: all 0.3s ease-out;
  border-radius: 4px;
}

.main-btn:hover{
  color: #fff;
}

.main-btn:hover:after{
  width: 100%;
}

.main-img-container{
  text-align: center;
  padding-right: 6rem;
}

#main-img{
  height: 150%;
  width: 150%;
}

/* Mobile Responsive */

@media screen and (max-width: 780px) {
  .main-container{
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    width: 100%;
    margin: 0 auto;
    height: 85vh;
  }

  .main-content{
    text-align: center;
    margin-bottom: 4rem;
  }

  .main-content .h1{
    font-size: 7rem;
    margin-top: 3rem;
  }

  .main-content .h2{
    font-size: 4rem;
  }

  .main-content .p{
    margin-top: 1rem;
    font-size: 2rem;
  }

  #main-img{
    height: 100%;
    width: 100%;
    margin-top: 1rem;
    margin-left: 70px;
  }
}

@media screen and (max-width: 675px){
  .main-content h1{
    font-size: 3rem;
    margin-top: 11.2rem;
  }

  .main-content h2{
    font-size: 2.2rem;
  }

  .main-content p{
    margin-top: 1rem;
    font-size: 1.5rem;
  }

  .main-btn{
    padding: 12px 36px;
    margin: 2rem 0;
  }

  .main-img-container{
    display: none;
  }
}

@media screen and (max-width: 1349px) {
  .main-img-container{
    padding-right: 15rem;
  }
}



@media screen and (max-width: 780px){
  .main-content h1{
    font-size: 5rem;
    margin-top: 11.2rem;
  }

  .main-content h2{
    font-size: 3rem;
  }

  .main-content p{
    margin-top: 1rem;
    font-size: 1.5rem;
  }

  .main-btn{
    padding: 12px 36px;
    margin: 2rem 0;
  }

  .main-img-container{
    display: none;
  }
}

@media screen and (max-width: 455px){
  .main-content .h1{
    font-size: 5.2rem;
    margin-top: 11.2rem;
  }

  .main-content .h2{
    font-size: 3rem;
  }

  .main-content p{
    margin-top: 1rem;
    font-size: 1.5rem;
  }

  .main-btn{
    padding: 12px 36px;
    margin: 2rem 0;
  }

  .main-img-container{
    display: none;
  }
}

@media screen and (max-width: 1174px) {
  .main-img-container{
    padding-left: 10rem;
  }

  #main-img{
    height: 150%;
    width: 30rem;
    margin-top: 1rem;
    margin-left: 70px;
  }
}

@media screen and (max-width: 1107px) {
  .main-img-container{
    padding-left: 1rem;
  }

  #main-img{
    height: 100%;
    width: 35rem;
    margin-top: 1rem;
    margin-left: 70px;
  }
}

/* Cards Section */

.main-tab{
  font-family: 'Nunito', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  outline: none; border:none;
  text-decoration: none;
  text-transform: capitalize;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
}

.main-div{
  background: #eee;
}

.container{
  max-width: 1250px;
  margin:0 auto;
  padding:3rem 2rem;
}

.container .title{
  font-size: 3.5rem;
  color:#444;
  margin-bottom: 3rem;
  text-transform: uppercase;
  text-align: center;
}

.container .products-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap:2rem;
}

.container .products-container .product{
  text-align: center;
  padding:3rem 2rem;
  background: #fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  outline: .1rem solid #ccc;
  outline-offset: -1.5rem;
  cursor: pointer;
}

.container .products-container .product:hover{
  outline: .2rem solid #222;
  outline-offset: 0;
}

.container .products-container .product img{
  height: 25rem;
}

.container .products-container .product:hover img{
  transform: scale(.9);
}

.container .products-container .product h3{
  padding:.5rem 0;
  font-size: 2rem;
  color:#444;
}

.container .products-container .product:hover h3{
  color:#27ae60;
}

.container .products-container .product .price{
  font-size: 2rem;
  color:#444;
}

.products-preview{
  position: fixed;
  top:0; left:0;
  min-height: 100vh;
  width: 100%;
  background: rgba(0,0,0,.8);
  display: none;
  align-items: center;
  justify-content: center;
}

.products-preview .preview{
  display: none;
  padding:2rem;
  text-align: center;
  background: #fff;
  position: relative;
  margin:2rem;
  width: 40rem;
}

.products-preview .preview.active{
  display: inline-block;
}

.products-preview .preview img{
  height: 30rem;
}

.products-preview .preview .fa-times{
  position: absolute;
  top:1rem; right:1.5rem;
  cursor: pointer;
  color:#444;
  font-size: 4rem;
}

.products-preview .preview .fa-times:hover{
  transform: rotate(90deg);
}

.products-preview .preview h3{
  color:#444;
  padding:.5rem 0;
  font-size: 2.5rem;
}

.products-preview .preview .stars{
  padding:1rem 0;
  font-size: 1.7rem;
}

.products-preview .preview .stars i{
  color:#27ae60;
}

.products-preview .preview .stars span{
  color:#999;
}

.products-preview .preview p{
  line-height: 1.5;
  padding:1rem 0;
  font-size: 1.6rem;
  color:#777;
}

.products-preview .preview .price{
  padding:1rem 0;
  font-size: 2.5rem;
  color:#27ae60;
}

.products-preview .preview .buttons{
  display: flex;
  gap:1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.products-preview .preview .buttons a{
  flex:1 1 16rem;
  padding:1rem;
  font-size: 1.8rem;
  color:#444;
  border:.1rem solid #444;
}

.products-preview .preview .buttons a.cart{
  background: #444;
  color:#fff;
  text-decoration: none;
}

.products-preview .preview .buttons a.buy{
  text-decoration: none;
}

.products-preview .preview .buttons a.cart:hover{
  background: #111;
}

.products-preview .preview .buttons a.buy:hover{
  background: #444;
  color:#fff;
}


@media (max-width:991px){

  html{
     font-size: 55%;
  }

}

@media (max-width:768px){

  .products-preview .preview img{
     height: 25rem;
  }

}

@media (max-width:450px){

  html{
     font-size: 50%;
  }

}

/* Footer CSS */
.footer-container{
  background-color: #131313;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer-logo {
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Redressed', cursive;
  font-size: 3.5rem;
}

.social-icon-link {
  color: #fff;
  font-size: 24px;
}

.social-media {
  max-width: 1000px;
  width: 100%;
}

.social-media-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 240px;
}

.website-rights {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 1.5rem;
}

@media screen and (max-width: 820px) {
  .footer-links {
    padding-top: 2rem;
  }

  #footer-logo {
    margin-bottom: 2rem;
  }

  .website-rights {
    margin-bottom: 2rem;
  }

  .footer-link-wrapper {
    flex-direction: column;
  }

  .social-media-wrap {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .footer-link-items {
    margin: 0;
    padding: 10px;
    width: 100%;
  }
}


