@import url("https://fonts.googleapis.com/css2?family=Allura&display=swap");

.navbar-brand {
  font-weight: 600;
  font-size: 30px;
  color: goldenrod;
}
.navbar-brand span {
  font-weight: 600;
  font-size: 1.4em;
  font-family: "Allura", cursive;
}

.nav-link {
  color: black;
  font-size: 0.9rem;
  font-size: 20px;
}
.nav-link:hover,
.active,
.fa-bag-shopping:hover {
  color: rgb(247, 180, 9) !important;
  text-decoration: underline;
}

.nav-item {
  padding-inline: 1.5rem;
}
.nav-icons{
  position: relative;
}
.bag-count{
   display: flex;
  justify-content: center;
  align-items: center;
    width: 25px;   
  height: 25px;
  position: absolute;
  left: 30px;
  bottom: 25px;
  background-color: black;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
  font-size: 14px;
}
.price{
  font-size: 20px;
  font-weight: bold;
  gap: 5px;
}
.price .price-small{
  font-size: x-small;
  text-decoration: line-through;
  font-weight: normal;

}
.price .price-discount{
  font-weight: normal;
  font-size: smaller;
  color: orangered;
}

/* basics style */
li {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.nav-icons a {
  font-size: 1.2rem;
  padding-inline: 0.5rem;
  color: black;
}
.fa-bag-shopping {
  font-size: 1.1rem;
  background: rgba(255, 246, 246, 0.503);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
}
.hero {
      position: relative;
      width: 100%;
      height: 100vh; /* full screen height */
      background: url("images/hero.png") no-repeat center center/cover;
    }

    /* Navbar ko hero ke upar laye */
    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
    }
      .navbar:hover{
        background-color: rgba(255, 255, 255, 0.37);
      }

    /* Hero content center me */
    .hero-content {
      position: absolute;
      top: 50%;
      left: 30%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
    }
    /* From Uiverse.io by barisdogansutcu */ 
.btn1 {
  padding: 17px 40px;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  background-color: white;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.5s ease;
}

.btn1:hover {
  letter-spacing: 3px;
  background-color: rgb(247, 180, 9);
  color: hsl(0, 0%, 100%);
  box-shadow:rgb(247, 180, 9) 0px 7px 29px 0px;
}

/* button:active {
  letter-spacing: 3px;
  background-color: rgb(247, 180, 9);
  color: hsl(0, 0%, 100%);
  box-shadow:rgb(247, 180, 9) 0px 0px 0px 0px;
  transform: translateY(10px);
  transition: 100ms;
} */

    .marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
}
.carousel-item img {
  width: 100%;
  height: 350px; /* apne hisaab se set kar sakti ho */
  object-fit: cover; /* image ko crop karke fit karega */
  border-radius: 10px;
}
.card img{
  
  height: 300px;
}
.heading{
    color: rgb(247, 180, 9);
    text-decoration: underline;
}

.button {
  --bg: #000;
  --hover-bg: rgb(247, 180, 9);
  --hover-text: #000;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--bg);
  border-radius: 4px;
  padding: 0.8em 2em;
  background: var(--bg);
  transition: 0.2s;
}

.button:hover {
  color: var(--hover-text);
  transform: translate(-0.25rem, -0.25rem);
  background: var(--hover-bg);
  box-shadow: 0.25rem 0.25rem var(--bg);
}

.button:active {
  transform: translate(0);
  box-shadow: none;
}

/* footer  */
.btn{
  background-color: rgb(247, 180, 9);
}
.btn:hover{
  background-color: rgb(247, 180, 9);
  box-shadow: 2px 2px 9px ;
  
}



@media screen and (max-width: 990px) {
  .navbar-collapse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255, 246, 246);
    padding-top: 2rem;
    margin-top: 5.6rem;
  }
  .navbar-nav {
    align-items: center;
    gap: 1rem;
  }
  .hero-content{
      top: 50%;
      left: 34%;

  }
}
