html {
          scroll-behavior: smooth;
} 

    body {
      margin: 0;
      font-family: sans-serif;
      padding: 20px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

#menu-toggle {
  position: fixed;
  top: 20px;    /* Abstand oben = Padding */
  right: 20px;  /* Abstand rechts = Padding */
  font-size: 36px;
color: #CE1F00;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100; /* Damit er über allem liegt */
}

    #overlay-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      color: white;
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    #overlay-menu ul {
      list-style: none;
      padding: 0;
    }

    #overlay-menu li {
      margin: 20px 0;
    }

    #overlay-menu a {
      color: white;
      text-decoration: none;
      font-size: 24px;
    }

    section {
      padding-top: 10px;
        margin-bottom: 50px;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .masonry {
    column-count: 3;
    column-gap: 1em;
}

.masonry2 {
      column-count: 2;
    column-gap: 1em;  
}

    .masonry img {
    width: 100%;
    height: auto;      /* Bildhöhe bleibt proportional */
    display: block;    /* entfernt eventuelle Inline-Spaces */
    margin-bottom: 1em;
}

.masonry > div {
  /* Abstand nach unten */
  margin-bottom: 1em;
}

.masonry2 {
      column-count: 2;
    column-gap: 1em;  
}

    .masonry2 img {
    width: 100%;
    height: auto;      /* Bildhöhe bleibt proportional */
    display: block;    /* entfernt eventuelle Inline-Spaces */
    margin-bottom: 1em;
}

.video-container {
  width: 100%;
}

.video-container video {
  width: 100%;
  height: auto; /* Höhe wird automatisch aus dem Seitenverhältnis berechnet */
  display: block; /* verhindert ungewollte Lücken */
}

    footer {
      text-align: center;
      margin-top: 50px;
    }

h1 {
    color: #CE1F00;
}

p {
    font-size: 19px;
}

a {
    color: #CE1F00;
    text-decoration: none;
}

a:hover {
    color: darkslategray;
}

    @media (max-width: 900px) {
        
      .masonry {
    column-count: 2;
    column-gap: 1em;
}      
    }


    @media (max-width: 600px) {
      #overlay-menu a {
        font-size: 18px;
      }
        
      .masonry, .masonry2 {
    column-count: 1;
    column-gap: 1em;
}      
    }

