
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body {
      overflow-x: hidden;
    }

    body {
      font-family: 'Space Grotesk', sans-serif;
      background: white;
      color: #000;
      line-height: 1.6;
    }
    header {
      background-image: url('hintergrund.png');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      height: 100vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2rem;
    }
    .intro {
      text-align: left;
      max-width: 800px;
      margin: 0 auto;
    }
    .intro h1 {
      font-size: 3rem;
    }
    .intro p {
      margin-top: 1rem;
      font-size: 1.2rem;
    }
    section {
      padding: 4rem 2rem;
      max-width: 800px;
      margin: 0 auto;
    }
    .programm-tag {
      margin-bottom: 2rem;
    }
    .programm-tag h2 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }
    .event {
      display: flex;
      flex-direction: column;
      margin-bottom: 0.5rem;
    }
    .badges {
      display: flex;
      gap: 0.5rem;
      margin-top: 0.3rem;
    }
    .badge {
      font-size: 0.75rem;
      padding: 0.2em 0.5em;
      border-radius: 0.3em;
    }
    .lesung {
      background: #cce;
      color: #000;
    }
    .gespraech {
      background: #cfc;
      color: #000;
    }
    .diskussion {
      background: #ffc;
      color: #000;
    }
    .vortrag {
      background: #def;
      color: #000;
    }
    .opencall {
    background: #e0e0ff;
    color: #000;
    }
    footer {
      padding: 2rem;
      text-align: center;
      font-size: 0.9rem;
      background: #f8f8f8;
    }
    a {
      color: #000;
    }
    @media (max-width: 600px) {
      .intro h1 {
        font-size: 2rem;
      }
      header {
        padding: 1rem;
      }
      .badge {
        display: inline-block;
        width: 80px;
        height: 26px;
        line-height: 26px;
        text-align: center;
        font-size: 0.75rem;
        border-radius: 0.3em;
        white-space: nowrap;
      }
    }
  
    .logo-fixed {
      position: fixed;
      top: 1rem;
      left: 1rem;
      z-index: 1000;
      font-size: 1.5rem;
      font-weight: bold;
      mix-blend-mode: difference;
      color: white;
      pointer-events: none;
    }