/* Site developed and built by sitethreesixty.com */
/* https://www.sitethreesixty.com */

/* ==========================================================================
   HERO COMPONENT
   Hero section styles.
   ========================================================================== */

.hero {
  padding: var(--space-16) 0;
  text-align: center;
}

.hero--lg {
  padding: var(--space-24) 0;
}

.hero--sm {
  padding: var(--space-8) 0;
}

/* --------------------------------------------------------------------------
   HERO CONTENT
   -------------------------------------------------------------------------- */

.hero__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--text-5xl);
  }

  .hero__subtitle {
    font-size: var(--text-2xl);
  }
}

/* --------------------------------------------------------------------------
   HERO VARIANTS
   -------------------------------------------------------------------------- */

/* Hero with background */
.hero--bg {
  background-color: var(--bg-surface-alt);
}

/* Hero with image background */
.hero--image {
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero--image .container {
  position: relative;
  z-index: 1;
}

.hero--image .hero__title,
.hero--image .hero__subtitle {
  color: var(--text-inverse);
}

/* Hero with left alignment */
.hero--left {
  text-align: left;
}

.hero--left .hero__subtitle {
  margin-left: 0;
  margin-right: 0;
}

.hero--left .hero__actions {
  justify-content: flex-start;
}

/* Site developed and built by sitethreesixty.com */
/* https://www.sitethreesixty.com */
