/* Hero Section Styles - Full-width container with title, details, image, and metrics */

/* Navigation white text on case study pages */
.hero-wrapper .navigation .nav-logo,
.hero-wrapper .navigation .nav-link {
  color: white;
}

.hero-wrapper .navigation .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hero-section {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: -72px;
  display: flex;
  flex-direction: column;
  padding: 60px 80px 80px;
  box-sizing: border-box;
}

.hero-content-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  flex: 1;
  margin-bottom: 60px;
  position: relative;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  color: white;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-detail-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.hero-detail-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-image-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.hero-image-placeholder {
  width: 100%;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: auto;
  margin-bottom: 80px;
  position: relative;
  z-index: 10;
}

.hero-metric-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
}

.hero-metric-value {
  font-size: 36px;
  font-weight: 600;
  color: white;
  margin: 0 0 8px 0;
  line-height: 1;
}

.hero-metric-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 60px 60px;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 40px 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-image-placeholder {
    height: 350px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}
