/* Hero Section - Full viewport minus header height */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100svh - 6rem);
  min-height: calc(100svh - 6rem);
  overflow: hidden;
  background: #000;
}

/* Mobile - 2rem */
@media (max-width: 768px) {
  .hero-section {
    height: calc(100svh - 2rem);
    min-height: calc(100svh - 2rem);
  }
}

/* Fallback for browsers without svh support */
@supports not (height: 100svh) {
  .hero-section {
    height: calc(100vh - 2.5rem);
    min-height: calc(100vh - 2.5rem);
  }
}

/* Hero image container */
.hero-image-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Dark overlay for better text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 2;
}

/* Hero content - vertically centered with padding */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  z-index: 3;
  text-align: center;
  gap: 0.5rem;
}

.hero-content.center {
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 3rem 1.5rem;
    gap: 0.25rem;
  }
}

/* Hero typography - System fonts */
.hero-title {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, system-ui, sans-serif !important;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, system-ui, sans-serif !important;
  font-size: clamp(1.25rem, 4vw, 2.25rem);
  font-weight: 500;
  color: #f8fafc;
  margin-bottom: 1.25rem;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.015em;
  line-height: 1.3;
}

.hero-description {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, system-ui, sans-serif !important;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 750px;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.4);
  padding: 1.25rem 2rem;
  border-radius: 10px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-description {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 95%;
  }
}

/* Hero CTA button */
.hero-cta {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, system-ui, sans-serif !important;
  display: inline-block;
  padding: 1rem 2.75rem;
  background: #dc2626;
  color: white;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .hero-cta {
    padding: 0.875rem 2rem;
  }
}
