/* --- Hero Area --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 134px; /* Offset for promo bar + sticky header */
  background: radial-gradient(circle at 10% 20%, rgba(226, 245, 238, 0.6) 0%, rgba(255, 249, 231, 0.4) 45%, rgba(255, 235, 234, 0.5) 90%);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

/* Hero Content */
.hero-content {
  z-index: 10;
  animation: fadeInUp 0.8s ease-out;
}

.hero-tag {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 127, 122, 0.1);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Showcase Images */
.hero-showcase {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  animation: fadeInUp 1s ease-out;
}

.showcase-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
}

.showcase-img {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

/* Layering the lunch box and play mat images */
.showcase-img-1 {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
  z-index: 2;
  animation: bounceSlow 6s ease-in-out infinite;
}

.showcase-img-2 {
  bottom: 0;
  right: 0;
  transform: rotate(6deg);
  z-index: 1;
  animation: bounceSlow 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  animation: floatSlow 5s ease-in-out infinite;
}

.badge-1 {
  top: 20px;
  right: -20px;
  background-color: var(--color-mint-light);
  color: var(--color-mint-dark);
  border: 1px solid var(--color-mint);
  animation-delay: 0.5s;
}

.badge-2 {
  bottom: 40px;
  left: -40px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid var(--color-primary-light);
  animation-delay: 2s;
}

/* Background elements */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
}

.blob-yellow {
  top: 10%;
  right: 15%;
  width: 300px;
  height: 300px;
  background-color: var(--color-yellow);
}

.blob-mint {
  bottom: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background-color: var(--color-mint);
}

/* Responsive adjustment */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 120px 0 5rem 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
  
  .hero-showcase {
    height: 380px;
  }
  
  .showcase-wrapper {
    width: 280px;
    height: 280px;
  }
  
  .showcase-img {
    width: 200px;
    height: 200px;
  }
  
  .badge-1 {
    right: -10px;
  }
  
  .badge-2 {
    left: -20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}
