/**
 * HERO BANNER - PROFESSIONAL E-COMMERCE STYLE
 * Full-width with background image overlay
 */

.hero-section-v2 {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(45, 95, 63, 0.95) 0%, rgba(30, 63, 42, 0.90) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23228B22" width="1200" height="600"/><path fill="%232D5F3F" opacity="0.3" d="M0 300 Q300 150 600 300 T1200 300 V600 H0 Z"/><circle fill="%234A7C59" opacity="0.2" cx="200" cy="150" r="100"/><circle fill="%234A7C59" opacity="0.2" cx="800" cy="400" r="150"/><circle fill="%234A7C59" opacity="0.15" cx="1000" cy="200" r="120"/></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  padding: 6rem 0;
}

/* Decorative shapes */
.hero-section-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-shape 20s ease-in-out infinite;
}

.hero-section-v2::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 111, 71, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-shape 25s ease-in-out infinite reverse;
}

@keyframes float-shape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.hero-content-v2 {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-v2 {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.hero-subtitle-v2 {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  animation: slideIn 0.6s ease-out 0.3s both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats overlay on hero */
.hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem 3rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
  text-align: center;
  color: var(--color-white);
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section-v2 {
    min-height: 500px;
    padding: 4rem 0;
    background-attachment: scroll;
  }

  .hero-title-v2 {
    font-size: 2.5rem;
  }

  .hero-subtitle-v2 {
    font-size: 1.125rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
  }

  .hero-section-v2::before,
  .hero-section-v2::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title-v2 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}
