<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Yuriy Musik</title>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap" rel="stylesheet">
  <style>
    :root {
      --primary: #1d3557;
      --accent: #f4a261;
      --background: #f1faee;
      --text: #1d1d1d;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: var(--background);
      color: var(--text);
      line-height: 1.6;
    }
    header {
      background: var(--primary);
      color: white;
      padding: 3rem 2rem;
      text-align: center;
    }
    header h1 {
      margin: 0;
      font-size: 3rem;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    }
    nav {
      background: var(--accent);
      padding: 1rem;
      text-align: center;
    }
    nav a {
      color: white;
      margin: 0 1.5rem;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }
    nav a:hover {
      color: #000;
    }
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 4rem 2rem;
      background: #1d3557;
      color: white;
    }
    .hero h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.1rem;
      max-width: 600px;
    }
    .hero img {
      max-width: 200px;
      border-radius: 1rem;
      margin-top: 2rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    .section {
      padding: 4rem 2rem;
      max-width: 900px;
      margin: auto;
      background-color: white;
      border-radius: 12px;
      margin-bottom: 2rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .section h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }
    ul {
      padding-left: 1.2rem;
    }
    a {
      color: var(--primary);
    }
    .gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
    }
    .gallery img {
      width: 250px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    footer {
      background: var(--primary);
      color: white;
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
    }
  </style>
</head>
<body>

  <header>
    <h1>Yuriy Musik</h1>
    <p>Multiinstrumentalist & Musikpädagoge</p>
  </header>

  <nav>
    <a href="#about">Über mich</a>
    <a href="#projects">Projekte</a>
    <a href="#teaching">Musikunterricht</a>
    <a href="#contact">Kontakt</a>
  </nav>

  <section class="hero">
    <h2>Ich bin Yuriy – Klarinette, Saxophone & Klavier</h2>
    <p>Ich liebe es, Klangwelten zu gestalten und Menschen mit Musik zu verbinden.</p>
    <img src="https://yuriymusik.com/wp-content/uploads/2025/04/IMG_5575-scaled-e1745328239492.jpg" alt="Yuriy live mit Saxophon">
  </section>

  <section class="section" id="about">
    <h3>Über mich</h3>
    <p>Geboren in der Ukraine, musikalisch aufgewachsen in Deutschland – meine Leidenschaft gilt den Holzblasinstrumenten, aber auch der Vielfalt zwischen Klassik, Klezmer, Jazz und elektronischer Musik.</p>
    <div class="gallery">
      <img src="https://yuriymusik.com/wp-content/uploads/2025/04/IMG_5575-scaled-e1745328239492.jpg" alt="Yuriy live mit Saxophon">
      <img src="https://source.unsplash.com/300x300/?clarinet,concert" alt="Klarinette">
      <img src="https://source.unsplash.com/300x300/?saxophone,stage" alt="Saxophon">
    </div>
  </section>

  <section class="section" id="projects">
    <h3>Projekte & Bands</h3>
    <ul>
      <li><strong><a href="https://abarra.de" target="_blank">Abarra</a></strong> – Improvisation & Groove</li>
      <li><strong><a href="https://threegoodboys.bandcamp.com" target="_blank">Threegoodboys</a></strong> – Freejazz & Performancekunst</li>
      <li><strong><a href="http://veronikaferrari.com" target="_blank">Veronika Ferrari & Die Flammen</a></strong> – Chanson & Fusion</li>
    </ul>
  </section>

  <section class="section" id="teaching">
    <h3>Musikunterricht</h3>
    <p>Ich unterrichte Klarinette, Saxophon und Klavier – online oder in Wentorf bei Hamburg oder in Hamburg. Für Anfänger & Fortgeschrittene, Kinder & Erwachsene.</p>
    <p>Jetzt unverbindlich anfragen:</p>
    <p><a href="#contact">Zum Kontaktformular</a></p>
  </section>

  <section class="section" id="contact">
    <h3>Kontakt</h3>
    <p>Du möchtest mich buchen oder Unterricht nehmen? Schreib mir einfach!</p>
    <p>E-Mail: <a href="mailto:deine@email.de">deine@email.de</a></p>
  </section>

  <footer>
    <p>&copy; 2025 Yuriy Musik · <a href="#">Impressum</a> · <a href="#">Datenschutz</a></p>
  </footer>

</body>
</html>
Nach oben scrollen