/* ===== Hero Section ===== */
.section-hero{
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  color: #fff;
    position: relative;
  overflow: hidden;
}

.section-hero .hero-inner{
  max-width: 900px;
}

.section-hero h1{
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 0 0 22px 0;
}

.section-hero .btn{
  appearance: none;
  border: none;
  border-radius: 0;
  background: #cfa75f;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 30px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transform: skewX(-10deg);
  display: inline-block;
}

.section-hero .btn:hover{
  filter: brightness(0.95);
}


/* Hintergrundbild */
.hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

/* Overlay für Lesbarkeit */
.hero-bg::after{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 34, 0.62);
}

/* Inhalt über dem Bild */
.section-hero .hero-inner{
  position: relative;
  z-index: 1;
}
