/* =============================================================================
   IFTAR - HERO SECTION
   ============================================================================= */

.ramadan-hero-section {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: #5a0f3a;
  font-family: 'Raleway', sans-serif;
}

@media (min-width: 768px) {
  .ramadan-hero-section {
    height: 450px;
  }
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1.0;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(135, 25, 104, 0.4), rgba(90, 15, 58, 0.8));
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-banner-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Desktop - 70% width */
@media (min-width: 1024px) {
  .hero-banner-image {
    width: 70%;
  }
}

/* Tablet and Mobile - 100% width */
@media (max-width: 1023px) {
  .hero-banner-image {
    width: 100%;
  }
}
