/* =====================================================
   HERO SECTION BASE STYLES
===================================================== */
.espresso-promo-wrapper {
  position: relative;
  height: 95vh;
  overflow: hidden;
  z-index: 5;
}

.hero-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.search-bar {
  margin-top: 80px;
  padding: 10px 30px;
  width: 75%;
  max-width: 900px;
  border: 2px solid #ccc;
  border-radius: 35px;
  font-size: 40px;
}

::placeholder {
  color: #aaa;
}

.hero-tag {
  font-size: 50px;
  font-weight: 1000;
  color: white;
  line-height: 1.5;
}

.premium-info {
  margin-top: 15px;
  width: 65%;
  font-size: 35px;
  color: white;
  font-weight: 500;
  line-height: 1.4;
}

.puree-btn-shop1 {
  padding: 12px 50px;
  background-color: #C32323;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 400px;
  margin-top: 50px;
  z-index: 100;
}

.puree-btn-shop1:hover {
  background-color: #EE3A3A;
}

.filter-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 50%);
  filter: blur(30px);
  z-index: -1;
}

.hero-img-container {
  position: relative;
  width: 100%;
  height: auto;
}

.hero-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes slideInUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

.animate-slide-in {
  animation: slideInUp 1s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 1s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 1.2s; }

/* =====================================================
   MEDIA QUERIES
===================================================== */
@media screen and (min-width: 900px) {
  .espresso-promo-wrapper {
    background-image: url("/images/puree-banner1.png");
    background-size: 140%;
    background-position: right center;
    background-repeat: no-repeat;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
  }

  .hero-container {
    width: 80%;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .search-bar {
    display: none;
  }

  .hero-tag {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-top: 50px;
  }

  .premium-info {
    font-size: 1.2rem;
    width: 40%;
    margin-top: 10px;
  }

  .puree-btn-shop1 {
    padding: 10px 40px;
    font-size: 20px;
    width: 200px;
    margin-top: 40px;
  }

  .filter-bg {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4));
    filter: none;
    margin: 0;
  }

  .hero-img-container {
    position: absolute;
    width: 1100px;
    height: 1100px;
    border-radius: 50%;
    background: #FFF5E3;
    z-index: 100;
    overflow: hidden;
    right: -200px;
  }

  .hero-image {
    bottom: 0;
    height: auto;
  }

  .hero-image img {
    position: absolute;
    width: 1050px;
    height: auto;
    margin-top: -250px;
    margin-left: -5px;
    z-index: 500;
  }
}

@media screen and (max-width: 480px) {
  .espresso-promo-wrapper {
      /*margin-top: 30px;*/
  }
  
  .animate-slide-left {
    animation: none !important;
  }
    
  .search-bar {
    margin-top: 85px;
    width: 88%;
    font-size: 18px;
    padding: 5px 15px;
  }

  .hero-tag {
    font-size: 22px;
    line-height: 1.3;
    margin-top: 80px;
  }

  .premium-info {
    font-size: 12px;
    width: 90%;
    margin-top: 10px;
  }

  .puree-btn-shop1 {
    padding: 10px 30px;
    font-size: 18px;
    width: 180px;
    margin-top: 30px;
  }

    .hero-img-container {
      position: absolute;
      width: 100%;
      height: auto;
      top: 0;
      z-index: -2;
    }
    
    .hero-image img {
      width: 100%;
      height: auto;
      top: 0;
    }
}

@media screen and (max-width: 380px) {
  .espresso-promo-wrapper {
      /*margin-top: 30px;*/
  }
    
  .animate-slide-left {
    animation: none !important;
  }
    
  .search-bar {
    margin-bottom: 85px;
    margin-bottom: 8px;
    padding: 5px 8px;
    font-size: 15px;
  }

  .hero-tag {
    width: 90%;
    font-size: 18px;
    margin-top: 60px;
  }

  .premium-info {
    width: 75%;
    font-size: 12px;
  }

  .puree-btn-shop1 {
    padding: 10px 40px;
    font-size: 18px;
    width: 180px;
    margin-top: 30px;
  }
  
    .hero-img-container {
      position: absolute;
      width: 100%;
      height: auto;
      top: 0;
      z-index: -2;
    }
}
