/* Hero Section Component */

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero__content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero__logo {
  width: 140px;
  height: auto;
  margin: 0 auto 20px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  filter: drop-shadow(0 4px 20px rgba(88, 145, 142, 0.3));
}

@media (max-width: 768px) {
  .hero__logo {
    width: 100px;
  }
}

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--color-accent-teal);
  border-radius: 50px;
  font-size: var(--font-size-small);
  font-weight: 500;
  color: var(--color-accent-teal);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

.hero__title {
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.6s forwards;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.8s forwards;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--color-accent-teal), var(--color-accent-olive));
  border: none;
  border-radius: var(--border-radius-md);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--font-size-body);
  cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: all var(--transition-smooth);
  opacity: 0;
  animation: fadeInUp 0.6s ease 1s forwards;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 145, 142, 0.5);
}

.hero__cta-arrow {
  transition: transform var(--transition-fast);
}

.hero__cta:hover .hero__cta-arrow {
  transform: translateX(4px);
}

/* Decorative shapes */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
}

.hero__shape--1 {
  width: 400px;
  height: 400px;
  background: var(--color-accent-teal);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero__shape--2 {
  width: 300px;
  height: 300px;
  background: var(--color-accent-olive);
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 200px;
  height: 200px;
  background: var(--color-accent-grey);
  top: 50%;
  left: 30%;
  animation: float 12s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 24px 60px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__shape--1,
  .hero__shape--2,
  .hero__shape--3 {
    opacity: 0.1;
  }
}
