/* ==========================================
   HERO SECTION STYLES
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  padding-top: var(--header-height);
  overflow: hidden;
  position: relative;
}

/* Subtle background decoration */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #fdf6f0 0%, #f5ebe0 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Hero Text Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 550px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-text-gray);
}

.hero-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background-color: var(--color-accent);
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-primary);
}

.hero-title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-description {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.8;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-gray);
}

/* Hero Visual: Product Image Collage */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product cards floating in the hero */
.hero-product-card {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--color-card);
}

.hero-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating animations */
@keyframes float-1 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(-2deg); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-25px) rotate(-1deg); }
}

.hero-product-card:nth-child(1) {
  width: 220px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation: float-1 6s ease-in-out infinite;
  z-index: 3;
}

.hero-product-card:nth-child(2) {
  width: 260px;
  height: 340px;
  top: 8%;
  right: 5%;
  animation: float-2 7s ease-in-out infinite;
  z-index: 2;
}

.hero-product-card:nth-child(3) {
  width: 200px;
  height: 260px;
  bottom: 10%;
  left: 15%;
  animation: float-3 5.5s ease-in-out infinite;
  z-index: 1;
}

/* CSS placeholder art inside the product cards */
.hero-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.3);
  text-align: center;
}

/* Background blobs decorations */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  bottom: -100px;
  right: -80px;
  opacity: 0.07;
}

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

  .hero::before {
    width: 100%;
    height: 40%;
    bottom: 0;
    top: auto;
  }

  .hero-content {
    max-width: 100%;
    align-items: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    height: 380px;
    width: 100%;
  }

  .hero-product-card:nth-child(1) {
    width: 150px;
    height: 200px;
    left: 5%;
  }

  .hero-product-card:nth-child(2) {
    width: 180px;
    height: 240px;
    right: 5%;
  }

  .hero-product-card:nth-child(3) {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
