<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>FSV Vohwinkel 1948 e.V.</title>
  <link rel="icon" type="image/png" href="fsv-vohwinkel-logo.png" />
  <style>
    /* Grundlegendes Styling */
    body {
      margin: 0;
      font-family: "Segoe UI", Arial, Helvetica, sans-serif;
      background-color: #f2f2f2;
      color: #222;
    }

    /* Header */
    header {
      background: linear-gradient(135deg, #a30000, #7a0000);
      color: white;
      padding: 25px 20px;
    }

    .header-inner {
      display: flex;
      align-items: center;
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .header-inner img {
      max-width: 100%;
      height: auto;
      flex-shrink: 0;
    }

    .header-text h1 {
      margin: 0;
      font-size: 2.6rem;
      letter-spacing: 1px;
    }

    .header-text p {
      margin: 6px 0 0;
      font-size: 1.1rem;
      opacity: 0.9;
    }

    @media (max-width: 600px) {
      .header-inner {
        justify-content: center;
        text-align: center;
      }
      .header-text h1 {
        font-size: 2rem;
      }
      .header-text p {
        font-size: 1rem;
      }
    }

    /* Navigation */
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: #111;
      padding: 12px 0;
      text-align: center;
    }

    nav a {
      color: white;
      margin: 0 12px;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.95rem;
      display: inline-block;
    }

    nav a:hover {
      color: #ffcccc;
    }

    @media (max-width: 600px) {
      nav a {
        display: block;
        margin: 8px 0;
      }
    }

    /* Hero-Sektion mit Parallax */
    .hero {
      position: relative;
      color: white;
      padding: 110px 20px;
      text-align: center;
      background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('hero.jpg') center/cover no-repeat;
      background-attachment: fixed; /* Parallax Effekt */
      background-size: cover;
      background-position: center;
    }

    @media (max-width: 768px) {
      .hero {
        background-attachment: scroll; /* Mobile Parallax deaktiviert */
        padding: 80px 20px;
      }
    }

    .hero h2 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .hero p {
      font-size: 1.3rem;
      opacity: 0.95;
    }

    @media (max-width: 600px) {
      .hero h2 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }

    /* Container */
    .container {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
      background: white;
    }

    h2 {
      color: #a30000;
      margin-bottom: 20px;
    }

    /* Karten */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .card {
      background: #fafafa;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

    /* Nächstes Spiel */
    .next-match {
      background: #111;
      color: white;
      padding: 30px;
      border-radius: 12px;
      margin-top: -60px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.3);
      text-align: center;
    }

    .next-match h3 {
      margin-top: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Spielplan & Matches */
    .matchday {
      margin-bottom: 35px;
    }

    .match {
      display: grid;
      grid-template-columns: 120px 1fr 80px;
      align-items: center;
      padding: 15px 20px;
      border-bottom: 1px solid #ddd;
    }

    .match:last-child {
      border-bottom: none;
    }

    .match-time {
      font-weight: 600;
      color: #555;
    }

    .match-teams {
      display: flex;
      justify-content: space-between;
      font-weight: 600;
    }

    .match-score {
      font-weight: 700;
      font-size: 1.2rem;
      color: #a30000;
      text-align: right;
    }

    /* Tabelle */
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      display: block;
      overflow-x: auto; /* scrollbar auf kleineren Geräten */
    }

    table th, table td {
      padding: 12px 10px;
      text-align: center;
      border-bottom: 1px solid #ddd;
      white-space: nowrap;
    }

    table th {
      background: #a30000;
      color: white;
      text-transform: uppercase;
      font-size: 0.85rem;
    }

    table tr:nth-child(even) {
      background: #f9f9f9;
    }

    /* Sportstätte & Kontakt */
    section p {
      line-height: 1.6;
    }

    /* Footer */
    footer {
      background-color: #111;
      color: white;
      text-align: center;
      padding: 25px;
      margin-top: 40px;
      font-size: 0.9rem;
    }
  </style>
</head>
<body>

  <!-- Header -->
  <header>
    <div class="header-inner">
      <img src="fsv-vohwinkel-logo.png" alt="FSV Vohwinkel 1948 e.V. Logo" width="180" loading="lazy" />
      <div class="header-text">
        <h1>FSV Vohwinkel 1948 e.V.</h1>
        <p>Tradition. Leidenschaft. Fußball.</p>
      </div>
    </div>
  </header>

  <!-- Navigation -->
  <nav>
    <a href="#verein">Verein</a>
    <a href="#mannschaften">Teams</a>
    <a href="#sportstaette">Stadion</a>
    <a href="#kontakt">Kontakt</a>
  </nav>

  <!-- Hero -->
  <section class="hero">
    <h2>Willkommen beim FSV Vohwinkel</h2>
    <p>Fußball mit Herz – seit 1948</p>
  </section>

  <div class="container">

    <!-- Nächstes Spiel -->
    <div class="next-match">
      <h3>Nächstes Spiel</h3>
      <p><strong>FSV Vohwinkel</strong> vs. <strong>SV Beispiel</strong></p>
      <p>Samstag · 15:00 Uhr · Lüntenbeck</p>
    </div>

    <!-- Verein -->
    <section id="verein">
      <h2>Unser Verein</h2>
      <p>
        Der FSV Vohwinkel 1948 e.V. ist ein traditionsreicher Fußballverein aus dem
        Wuppertaler Stadtteil Vohwinkel. Seit unserer Gründung im Jahr 1948 stehen
        Fairness, Teamgeist und die Förderung des Amateurfußballs im Mittelpunkt.
      </p>
    </section>

    <!-- Mannschaften -->
    <section id="mannschaften">
      <h2>Mannschaften</h2>
      <div class="cards">
        <div class="card"><strong>1. Mannschaft</strong><br />Senioren – Leistungsfußball</div>
        <div class="card"><strong>2. Mannschaft</strong><br />Breite & Entwicklung</div>
        <div class="card"><strong>Damen</strong><br />Engagement & Teamgeist</div>
        <div class="card"><strong>Jugend</strong><br />G- bis A-Jugend</div>
      </div>
    </section>

    <!-- Spielplan -->
    <section id="spielplan">
      <h2>Spielplan & Ergebnisse</h2>
      <div class="matchday">
        <h3>Samstag, 27. April</h3>
        <div class="match">
          <div class="match-time">15:00 Uhr</div>
          <div class="match-teams">
            <span>FSV Vohwinkel</span>
            <span>SV Beispiel</span>
          </div>
          <div class="match-score">2 : 1</div>
        </div>
      </div>
    </section>

    <!-- Tabelle -->
    <section id="tabelle">
      <h2>Tabelle</h2>
      <table>
        <tr>
          <th>Pl.</th><th>Verein</th><th>Sp.</th><th>Tore</th><th>Pkt.</th>
        </tr>
        <tr>
          <td>1</td><td>FSV Vohwinkel</td><td>24</td><td>52:21</td><td>55</td>
        </tr>
        <tr>
          <td>2</td><td>SV Beispiel</td><td>24</td><td>48:25</td><td>51</td>
        </tr>
        <tr>
          <td>3</td><td>TuS Musterstadt</td><td>24</td><td>44:30</td><td>46</td>
        </tr>
      </table>
    </section>

    <!-- Sportstätte -->
    <section id="sportstaette">
      <h2>Sportstätte</h2>
      <p>
        Unsere Heimspiele tragen wir auf dem Sportplatz Lüntenbeck in
        Wuppertal-Vohwinkel aus.
      </p>
    </section>

    <!-- Kontakt -->
    <section id="kontakt">
      <h2>Kontakt</h2>
      <p>
        E-Mail: <strong>info@fsv-vohwinkel.de</strong><br />
        Adresse: Lüntenbeck, 42327 Wuppertal
      </p>
    </section>
  </div>

  <!-- Footer -->
  <footer>
    <p>&copy; 2026 FSV Vohwinkel 1948 e.V. – Alle Rechte vorbehalten</p>
  </footer>

</body>
</html>