/* Hero Section Styles */

/* Hero Section Layout */
.section-hero {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.hero-background-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Responsive Hero Blur Elements */
@media (max-width: 768px) {
  .hero-content {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .hero-blur-1,
  .hero-blur-2 {
    width: 12rem;
    height: 12rem;
    filter: blur(48px);
  }

  .hero-blur-1 {
    left: -3rem;
    top: 3rem;
  }

  .hero-blur-2 {
    right: -3rem;
    bottom: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-blur-1,
  .hero-blur-2 {
    display: none;
  }
}

/* Hero Page-specific Sections */

.hero-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-overlay-bg {
  z-index: -1;
}

.hero-overlay-image {
  object-fit: cover;
}

.hero-overlay-gradient {
  background: linear-gradient(to bottom right, hsl(210, 100%, 99%), hsla(210, 100%, 99%, 0.9), hsla(210, 100%, 99%, 0.7));
}

.hero-gradient-accent {
  background: linear-gradient(135deg, hsla(210, 100%, 50%, 0.05), hsla(185, 85%, 55%, 0.05));
  z-index: 0;
}

.hero-container {
  z-index: 10;
}

/* Hero Badge */
.hero-badge {
  background-color: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.2);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Hero Title (for workflow/case study pages) */
.hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
  color: var(--foreground);
  font-weight: bold;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* Hero Subtitle (for workflow/case study pages) */
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Hero Stats */
.hero-stat-number {
  font-size: 1.875rem;
  color: var(--foreground);
  font-weight: bold;
}

.hero-stat-label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.hero-description {
  font-size: 1.25rem;
  color: hsl(215, 15%, 45%);
}

.hero-industry {
  color: hsl(215, 15%, 45%);
}
