body {
    font-family: 'monaco', sans-serif;
    margin: 0;
    padding: 0 0 50px 0; 
    background-color: #f8f8f8;
    padding-bottom: 200px;
}

@font-face {
    font-family: 'monaco';
    src: url(assets/Monaco.ttf);
  }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f8f8f8;
    padding: 10px 20px;
    font-weight: bold;
}

#logo {
    order: 1;
    flex: 0 1 auto;
    max-width: 150px;
    
}

#spielort {
    max-width: 200px;
    transition: transform 0.3s ease-in-out; 
}

#spielort:hover {
    transform: scale(1.1);
}

#verbandLogos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

p{
    font-weight: lighter;
    line-height: 140%;
}

section {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

h1, h2, h3 {
    color: #3262ff;
    /*color: #7b2f85; */
   /* font-weight: lighter; */
    line-height: 140%;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    background-color: #f8f8f8;
}

.menu li {
    display: inline;
}

.menu li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.menu li a:hover {
    background-color: #3262ff;
}

.menu-toggle {
    order: 2;
    display: none;
    flex-direction: column;
    height: 24px;
    width: 30px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: black;
}

nav {
    order: 3;
    flex: 1;
}

@media screen and (max-width: 768px) {
    /*
    .menu-toggle {
        display: flex;
    }

    nav {
        width: 100%;
        text-align: center;
    }

    .menu {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        width: 100%;
        padding: 10px;
        border-top: 1px solid #ccc;
    }

    .menu.active {
        display: flex;
    }
*/


    footer {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        background-color: red;
        position:  static;
    }

    #verbandLogos {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

footer {
    background-color: #f8f8f8;
    color: black;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px; /* Erhöhtes Padding für mehr inneren Raum */
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50px; /* Erhöhte Höhe des Footers */
    
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #1d1e25;
        color: #fff;
        padding-bottom: 200px;
    }

    header {
        background-color: #1d1e25;
    }

    h1, h2, h3 {
        color: #3262ff;

    }

    footer {
        background-color: #1a1b21;
        color: #ccc;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 20px; /* Erhöhtes Padding für mehr inneren Raum */
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 50px; /* Erhöhte Höhe des Footers */
    }
    
    

    .menu{
        background-color: #1d1e25;
    }

    .menu li a {
        color: #ccc;
    } 

    .menu-toggle .bar {
        background-color: #ccc;
    }
}

#map {
    height: 600px;
}

ul.timeline {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ul.timeline > li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 20px;
}
ul.timeline > li:before {
    content: '';
    background: #3262ff; /* Grün */
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}


/* Burger Menue */
.burger-menu {
    display: none; /* Standardmäßig versteckt */
    font-size: 24px;
    cursor: pointer;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
  }
  
  nav ul li {
    padding: 8px 0;
  }

  /* Burger Menu */
.burger-menu {
    display: none; /* Standardmäßig versteckt */
    font-size: 24px;
    cursor: pointer;
  }
  
  @media screen and (max-width: 768px) {
    .burger-menu {
      display: block;
    }
  
    nav ul {
      display: none; /* Verstecke die Navigation standardmäßig */
    }

nav ul.menu:not(.active) {
    display: none; /* Verstecke das Menü, wenn es nicht aktiv ist */
}

    nav ul.menu.active {
      display: block; /* Zeige das Menü, wenn es aktiv ist */
    }

    header {
        justify-content:center;
        text-align: center;
    }

    #logo {
        margin-right: 0; /* Entfernt den rechten Margin, um das Logo zu zentrieren */
        position: relative; 
        /*order: -1; /* Stellt das Logo über das Burger-Menü, wenn du möchtest */
    }

   
    nav ul {
        justify-content: center;
    }
    
  }

  .pdf {
    width: 100%;
    aspect-ratio: 4 / 3;
}
  
.responsive {
    width: 100%; /* Macht das Bild responsiv, passt sich der Containerbreite an */
    height: auto; /* Erhält das ursprüngliche Seitenverhältnis */
  }