
/* shop now page */
  .hero {
    height: 90vh;
    background: url('Assets/images/hero.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s forwards;
  }
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  .hero-content .btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    background-color: #ff4500;
    border: none;
    color: white;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
    .hero-content p {
      font-size: 1rem;
    }
    .hero-content .btn {
      font-size: 1rem;
      padding: 10px 20px;
    }
  }
  
  /* prod */
  .products-section {
  background: url('Assets/images/bg.jpg') center/cover no-repeat;
  position: relative;
}
.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.products-section .container-fluid {
  position: relative;
  z-index: 2;
}


.card {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 300px;
  color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
}

.card-img {
  width: 100%;
  height:100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* .card-info {
  position: relative;
  z-index: 2;
  width: 98%;
  padding: 10px 10px 10px 10px ;
  margin-top: 220px;
  color: #ff4500;
  background: rgba(177, 168, 168, 0.89);
  border-radius: 0 10px 10px 0;
} */


.card-info {
  z-index: 2;
  width: 95%;
  padding: 10px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(177, 168, 168, 0.89);
  border-radius: 0 10px 10px 0;
  color: #ff4500;
}

.kl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.art-title {
  font-weight: 600;
}

.artist-name {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-top: 5px;
}


.art-price{
    font-family: Georgia, serif;
}

/* .kl{
    display: flex;
    gap: 100px;
} */
/* .artist-name{
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    font-family: 'Playfair Display', serif ;
} */




.art-title, .artist-name, .art-price {
  margin: 0;
}



.bn{
    background-color: #ff4500;
    color: #fff;
    font-size: 18px; 
    
}
.bn:hover{
    color: #ff4500;
    border: 1px solid #ff4500;
}
.bnh{
    color: #fff;
    border: 1px solid #fff;
}
.bnh:hover{
    color: black;
    background: #fff;
}


/* Overlay hidden by default */
.card-overlay    {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.5s ease;
  z-index: 3;
}

/* Slide down on hover */
.card:hover .card-overlay {
  top: 0;
}

/* Overlay buttons style */
.overlay-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overlay-content .btn {
  width: 120px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: auto;
}

.products-section {
  background: linear-gradient(to bottom right, rgba(0,0,0,0.39), rgba(30,30,30,0.39)), 
              url('Assets/images/bg.jpg') center/cover no-repeat;
  position: relative;
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.products-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* Card Base */
.card {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 300px;
  color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
}

.card-img {
  width: 100%;
  height:100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Card Info */
.card-info {
  z-index: 2;
  width: 98%;
  padding: 10px;
  margin-top: 220px;
  color: #ff4500;
  background: rgba(177, 168, 168, 0.89);
  border-radius: 0 10px 10px 0;
}

.kl {
  display: flex;
  justify-content: space-between;
}

.artist-name {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* Buttons */
.bn, .bnh {
  transition: all 0.3s ease;
}

.bn {
  background-color: #ff4500;
  color: #fff;
  font-size: 18px;
}
.bn:hover {
  color: #ff4500;
  border: 1px solid #ff4500;
  background-color: transparent;
}

.bnh {
  color: #fff;
  border: 1px solid #fff;
}
.bnh:hover {
  color: black;
  background: #fff;
}

/* Overlay */
.card-overlay {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.5s ease;
  z-index: 3;
}
.card:hover .card-overlay {
  top: 0;
}
.overlay-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.overlay-content .btn {
  width: 120px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: auto;
}




