@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

/* Basis */
html, body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: #ffffff;
    background: url('bg.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
  }
  
  
  /* Zentriert bei kurzen Seiten, scrollbar bei langen */
  body {
    /* nicht height, sondern min-height */
    min-height: 100svh;
    display: grid;
    place-items: center;
    text-align: center;
  
    background: url('hintergrund.png') no-repeat center center fixed;
    background-size: cover;
  }
  
  /* Box */
  .content {
    background: rgba(0, 0, 0, 0.55);
    padding: 2rem 3rem;
    border-radius: 12px;
  
    /* Breite + max */
    width: min(92vw, 900px);
  
    /* Abstand für lange Seiten, damit oben/unten nichts abgeschnitten wird */
    margin-block: 3rem;
    box-sizing: border-box;
  }
  
  /* Typografie */

  h1, h2, h3 {
    font-weight: 600;
    letter-spacing: 0.5px;text-align: left;
  }
  p {
    font-weight: 400;
  }
  
  p, address {
    margin: 0.25rem 0 1rem 0;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
  }
  
  a { color: #ffffff; text-decoration: underline; }
  a:hover { color: #cccccc; }
  
  /* Mobile: Hintergrund-Fix deaktivieren (iOS Safaris Scroll-Jank vermeiden) */
  @media (max-width: 768px) {
    body {
      background-attachment: scroll;
    }
  }
  