/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
  }
  
  /* SCHRIFTART */
  @font-face {
    font-family: 'Helvetica Textbook';
    src: url('assets/fonts/Helvetica-Textbook-LT-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    
  }
  
  /* GRUNDSTIL */
  body {
    font-family: 'Helvetica Textbook', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #F8F06E;
    color: #8b8b8b;
    line-height: 1.45;
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
/* KONSTRUKTIVES RASTER – FIXIERT */
.grid-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  
    background-image:
      /* vertikale Linien – 3 Spalten */
      linear-gradient(
        to right,
        transparent 33.333%,
        rgb(255, 255, 255) 33.333%,
        rgb(255, 255, 255) calc(33.333% + 1px),
        transparent calc(33.333% + 1px),
  
        transparent 66.666%,
        rgb(255, 255, 255) 66.666%,
        rgb(255, 255, 255) calc(66.666% + 1px),
        transparent calc(66.666% + 1px)
      );
}

/* Alle horizontalen Linien gleich stylen */
.grid-line-top,
.grid-main-line,
.grid-line-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgb(255, 255, 255);
    pointer-events: none;
    z-index: 0;
}
 
  
  /* HERO */
  .hero {
    position: relative;
    width: 100%;
    padding: 0.5rem; /* sehr wenig Abstand zum Rand */
    z-index: 1; /* ← über dem Grid */
  }
  
  .hero-svg {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* DREI-SPALTEN LAYOUT */
  .three-columns {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* drei gleichbreite Spalten, immer proportional */
    gap: 1.5rem; /* enger Abstand zwischen Spalten */
    margin: 0 auto;
    padding: 2rem 1rem; /* sehr wenig Padding oben/unten und links/rechts */
    z-index: 1;
  }
  
  .column {
    min-width: 0;
  }

  /* TYPOGRAFIE */
h3 {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #8b8b8b;
    text-transform: uppercase;
  }
  
  p {
    margin-bottom: 0.8rem; /* engerer Abstand zwischen Absätzen */
    color: #8b8b8b;
  }
  
  ul {
    margin-left: 1.2rem;
    margin-bottom: 0.8rem; /* engerer Abstand */
  }
  
  li {
    margin-bottom: 0.3rem; /* engerer Abstand zwischen Listenpunkten */
    color: #8b8b8b;
  }
  
  strong {
    font-weight: normal;
  }
  
  /* LINKS */
  a {
    color: #8b8b8b;
    text-decoration: underline;
  }
  
  a:hover {
    color: #f2a1c7;
  }
  

.column p {
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

/* ABSATZ FÜR LOGOS */
.column-1 .meta {
    font-size: 0.6rem;
    line-height: 1.4;
    opacity: 0.5;
    margin-bottom: 0.8em;
    margin-top: 1rem;
  }

.column ul {
  margin: 1.2rem 1.2rem 1.2rem;
}

.column li {
  margin-bottom: 0.25rem;
}

h3 {
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em; /* leicht plakatiger */
}

/* Tablet: 2 Spalten */
@media (max-width: 900px) {
    .three-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Handy: 1 Spalte */
@media (max-width: 600px) {
    .three-columns {
        grid-template-columns: 1fr;
    }
}

/* Hero nimmt volle Bildschirmhöhe ein */
.hero {
    position: relative;
    width: 100%;
    padding: 0.5rem;
    z-index: 1;
    min-height: 100vh; /* ← Volle Bildschirmhöhe */
    display: flex;
    align-items: center; /* ← Logo vertikal zentrieren */
    justify-content: center; /* ← Logo horizontal zentrieren */
}
  

.asterisk-list {
    list-style: none;
    padding-left: 1.6em;
    margin: 0.4em;
  }
  
  .asterisk-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.4em;
  }
  
  .asterisk-list li::before {
    content: "*";
    position: absolute;
    left: -3px;
    top: -5px;
    font-size: 2.2em;
  }



