/* Startseite */

.hero {
  min-height: calc(100vh - 180px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

.hero-content {
  max-width: 850px;
  margin-top: -40px;
}

.department {
  font-size: 28px;
  letter-spacing: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 96px;
  letter-spacing: 14px;
  text-transform: uppercase;
  color: #d5a647;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  margin-bottom: 25px;
}

.small-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.small-line span {
  width: 180px;
  height: 2px;
  background: #c79845;
}

.small-line b {
  color: #d5a647;
  font-size: 24px;
}

.claim {
  font-size: 25px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 35px;
}

.text {
  color: #ddd;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 40px;
}

@media (max-width: 1400px) {
  .hero h1 { font-size: 60px; }
}

@media (max-width: 800px) {
  .hero h1 {
    font-size: 42px;
    letter-spacing: 6px;
  }

  .department {
    font-size: 18px;
    letter-spacing: 7px;
  }

  .claim {
    font-size: 16px;
    letter-spacing: 4px;
  }
}
