/* =========================
   IMPRESSUM – FINAL, EIN BLOCK
   ========================= */

:root {
  --header-w: 250px;
  --gap-top: clamp(24px, 6vh, 80px);
}

@media (min-width: 1251px) {
.impressum-section {
  position: fixed;

  top: 0;
  left: calc(var(--header-w) + var(--gap));
  right: var(--gap);

  bottom: var(--gap);
  box-sizing: border-box;

  min-height: auto;

  overflow-y: auto;

  line-height: 1.6;
  font-size: 1rem;


padding-top: clamp(32px, 6vw, 80px);
padding-left: clamp(32px, 6vw, 80px);
padding-right: clamp(32px, 6vw, 80px);
padding-bottom: 150px;
}
}

/* ===== BOX (DAS EINZIGE, WAS ZENTRIERT WIRD) ===== */
.impressum-section .impressum-box {
  max-width: 900px;
  padding: clamp(24px, 4vw, 48px);

  /* Glas */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px) saturate(130%);
  -webkit-backdrop-filter: blur(8px) saturate(130%);

  /* Goldrahmen */
  border: 2px solid rgba(209, 182, 98, 0.55);
  border-radius: 16px;

margin-left: auto;
margin-right: auto;
box-sizing: border-box;


}

/* ===== TYPO ===== */
.impressum-section h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #fff;
  text-shadow:
    0 0 1px rgba(0,0,0,0.9),
    0 0 10px rgba(209,182,98,0.9),
    0 0 15px rgba(209,182,98,0.8);
  margin: 0 0 30px 0;
  letter-spacing: 1px;
}

.impressum-section h2 {
  font-size: 1.2rem;
  margin: 2.2em 0 0.6em;
  color: rgba(204, 168, 59, 0.9);
  text-shadow: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.impressum-section h3 {
  font-size: 1rem;
  margin: 2.2em 0 0.6em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 10px rgba(100, 73, 0, 0.3), 0 0 5px rgba(54, 40, 0, 0.2), 0 0 5px rgba(54, 40, 0, 0.1) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.impressum-section p {
  margin-bottom: 1em;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0 10px rgba(100, 73, 0, 0.3), 0 0 5px rgba(54, 40, 0, 0.2), 0 0 5px rgba(54, 40, 0, 0.1) !important;
}

.impressum-section strong {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.impressum-section a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}




@media (max-width: 1251px) {
  .impressum-section {
    left: 10px;
    right: 10px;
    bottom: 0; 
    position: fixed;
    top: 0;
    padding-top: 170px;     /* Abstand UNTER dem mobilen Header */
    padding-bottom: 30px;  /* Abstand unten */
    box-sizing: border-box;
  }

  .impressum-section .impressum-box {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 15vw);
    width: auto;
    padding: 22px 18px;
    
  }
}

@media (max-width: 1251px) {
.impressum-section {
  position: static;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  overflow: visible;
}
main {
  overflow-y: auto;
}

.impressum-section .impressum-box h1 {
  max-width: 100%;
  white-space: nowrap;

  /* wird kleiner, bleibt einzeilig */
  font-size: clamp(1.4rem, 4vw, 2.4rem);

  line-height: 1.15;
  text-align: center;
}

}

