/* --- Burger-Menü --- */
    .menu-toggle {
      display: none;
      background: #FFD700;
      border: none;
      color: #111;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 10px 0;
      width: 100%;
      text-align: center;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        gap: 0;
        background: #FFD700;
        padding: 0;
      }
      nav.active {
        display: flex;
      }
      .menu-toggle {
        display: block;
        background: #FFD700;
        border: none;
        color: #111;
        font-size: 1.5rem;
        padding: 10px 0;
        width: 100%;
        text-align: center;
      }
    }


    /* --- Header Animation --- */
    .header-content h1 {
      animation: fadeIn 1s ease-in-out;
      position: relative;
    }
    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(-10px);}
      to {opacity: 1; transform: translateY(0);}
    }

    /* --- Vereinsspielplan Hervorhebung --- */
    .sidebar {
      border: 2px solid #FFD700;
    }

    /* --- Footer Buttons --- */
    .footer-nav a {
      color: #FFD700;
      text-decoration: none;
      margin: 0 5px;
      transition: color 0.2s;
      font-size: 0.9rem;
    }
    .footer-nav a:hover {
      color: #fff;
    }

    /* --- News Artikel mit Border --- */
    .news-article {
      border-left: 4px solid #FFD700;
      padding-left: 15px;
    }

    /* --- Lazy Loading Bilder --- */
    .news-article img {
      width: 100%;
      height: auto;
      max-height: 300px;
      object-fit: cover;
      margin-bottom: 10px;
      border-radius: 5px;
    }
    .header-top-bar {
      width: 100%;
      height: 5px;
      background-color: #FFD700;
    }
    .news-article img {
      width: 100%;
      height: auto;
      max-height: 300px;
      object-fit: cover;
      margin-bottom: 10px;
      border-radius: 5px;
    }
    .footer-nav {
      background: none;
    }
    nav a {
      text-transform: uppercase;
    }

    .header-content h1 {
      text-transform: uppercase;
    }
    .container {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 20px;
      max-width: 1200px;
      margin: 20px auto;
      padding: 0 20px;
      text-align: left;
    }

    .news {
      flex: 0 0 75%;
      background: transparent;
      border-radius: 5px;
      padding: 20px;
      box-shadow: none;
    }

    .sidebar {
      flex: 0 0 25%;
      background: #fff;
      border-radius: 5px;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .section-heading {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 15px;
      border-bottom: 4px solid #FFD700;
      display: inline-block;
      padding-bottom: 5px;
    }

    .news-article {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      padding: 20px;
      margin-bottom: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .news-article:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .news-article h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .news-date {
      font-size: 0.9rem;
      color: #888;
      margin-bottom: 10px;
    }

    .read-more {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 20px;
      background: #FFD700;
      color: #111;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .read-more:hover {
      background: #111;
      color: #FFD700;
      transform: translateY(-2px);
      box-shadow: 0 5px 12px rgba(0,0,0,0.2);
    }
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f5f5f5;
      color: #111;
      text-align: center;
    }

    header {
      background: linear-gradient(90deg, #000, #222);
      text-align: center;
      padding: 20px;
      color: #FFD700;
      border-top: 2px solid #FFD700;
    }

    header img {
      max-height: 120px;
    }

    nav {
      background: linear-gradient(90deg, #FFD700, #e6c200);
      display: flex;
      justify-content: center;
      gap: 40px;
      padding: 15px 0;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    nav a {
      color: #111;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: color 0.3s, transform 0.2s;
      position: relative;
    }

    nav a:hover {
      color: #000;
      transform: scale(1.05);
    }
    nav a::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #111;
      transform: scaleX(0);
      transition: transform 0.3s ease;
      transform-origin: right;
    }

    nav a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

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

    .header-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .header-content img {
      max-height: 100px;
      filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }

    .header-content h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem;
      margin: 0;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    }
    .footer-nav {
      font-size: 0.8rem;
      color: #fff;
      margin-bottom: 10px;
    }
    .footer-nav a {
      color: #FFD700;
      text-decoration: none;
      margin: 0 5px;
      transition: color 0.2s;
      font-size: 0.9rem;
    }
    .footer-nav a:hover {
      color: #fff;
    }
  


    /* --- Responsive Anpassungen --- */
    @media (max-width: 1024px) {
      .container {
        flex-direction: column;
        padding: 0 10px;
      }

      .news, .sidebar {
        flex: 0 0 100%;
      }

      nav {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px 0;
      }

      nav a {
        font-size: 1rem;
      }
    }

    @media (max-width: 768px) {
      .header-content h1 {
        font-size: 1.5rem;
      }

      .news-article img {
        max-height: 200px;
      }

      .news-article h2 {
        font-size: 1.2rem;
      }

      .read-more {
        font-size: 0.8rem;
        padding: 6px 16px;
      }

      .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
    }
    @media (max-width: 768px) {
      nav a {
        background: #FFD700;
        display: block;
        padding: 10px;
        border-bottom: 1px solid #e6c200;
      }
    }