/* Hero Component */

.hero {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F5F6F7 100%);
  padding: var(--spacing-4xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(31, 58, 95, 0.02) 0%, transparent 50%),
                     radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-primary);
  margin-bottom: 0;
}

.hero__subtitle {
  font-family: var(--font-secondary);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-snug);
  color: var(--color-secondary);
  font-weight: var(--font-weight-regular);
  margin-bottom: 0;
}

.hero__description {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-700);
  max-width: 550px;
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-slow);
}

.hero__image img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero {
    padding: var(--spacing-3xl) 0;
  }

  .hero__content {
    gap: var(--spacing-3xl);
  }

  .hero__title {
    font-size: var(--font-size-4xl);
  }

  .hero__subtitle {
    font-size: var(--font-size-lg);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: var(--spacing-2xl) 0 var(--spacing-3xl);
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    text-align: center;
  }

  .hero__text {
    order: 2;
  }

  .hero__image {
    order: 1;
  }

  .hero__title {
    font-size: var(--font-size-3xl);
  }

  .hero__subtitle {
    font-size: var(--font-size-md);
  }

  .hero__description {
    font-size: var(--font-size-base);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image img {
    max-width: 300px;
    transform: none;
  }

  .hero__image img:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: var(--font-size-2xl);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }
}
