/* Vollflächiger Hero mit Hintergrundbild */
.hero.hero--glass {
  position: relative;
  min-height: clamp(60vh, 80vh, 92vh);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Hintergrundbild – gleiche Ebene wie body, aber nur im Hero */
  background: url("../assets/img/Aran-Kael.jpg") center / cover no-repeat fixed;
  color: #fff;

  /*Fallback:dunkler Farbverlauf*/
  background linear-gradient(135deg, #0d0d0d, +262626);

  /*Bild drüber legen */
  background-image: lineare-gradient(rgba(0,0,0,0.45), rgba(0000.45)),
    url("../assets/img/Aran-Kael.jpg");

  background-size: 80%;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

/* dunkle Overlay-Schicht für bessere Lesbarkeit */
.hero.hero--glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Glas-Box */
.hero.hero--glass .glass {
  position: relative; /* über dem Overlay */
  max-width: 760px;
  padding: 2.2rem 3rem;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* Typografie */
.hero__title {
  margin: 0 0 .5rem 0;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  letter-spacing: .5px;
}

.hero__subtitle {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  opacity: .95;
}

/* Optionaler Button – kann später aktiviert werden */
.btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: .85rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;

  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  transition: transform .2s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .28);
}
