<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Süße Rezepte</title>
  <style>
    /* General Styles */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f9;
      color: #333;
    }

    header {
      background-color: #ffcc99;
      text-align: center;
      padding: 30px 0;
    }

    h1 {
      margin: 0;
      color: #fff;
    }

    p {
      color: #fff;
      font-size: 1.2em;
    }

    nav {
      background-color: #ff9966;
      padding: 10px 0;
      text-align: center;
    }

    .nav-links a {
      margin: 0 15px;
      text-decoration: none;
      color: #fff;
      font-weight: bold;
    }

    .nav-links a:hover {
      color: #333;
    }

    .search-bar {
      text-align: center;
      margin: 20px 0;
    }

    .search-bar input {
      padding: 10px;
      width: 80%;
      font-size: 1em;
      border: 2px solid #ccc;
      border-radius: 5px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    h2 {
      color: #ff9966;
    }

    .recipe-card {
      background-color: #fff;
      margin-bottom: 20px;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      display: flex;
      flex-wrap: wrap;
    }

    .recipe-card img {
      max-width: 200px;
      border-radius: 5px;
      margin-right: 20px;
    }

    .recipe-content {
      max-width: 800px;
    }

    .recipe-content h2 {
      margin-top: 0;
      color: #ff9966;
    }

    .recipe-content p {
      font-size: 1.1em;
    }

    .recipe-content a {
      text-decoration: none;
      color: #ff9966;
      font-weight: bold;
    }

    .recipe-content a:hover {
      color: #333;
    }

    footer {
      background-color: #ff9966;
      color: #fff;
      text-align: center;
      padding: 15px 0;
      position: fixed;
      width: 100%;
      bottom: 0;
    }

  </style>
</head>
<body>

<header>
  <h1>Süße Rezepte</h1>
  <p>Leckere Ideen für perfekte hausgemachte Kuchen</p>
</header>

<nav>
  <div class="logo">🍰 Süße Rezepte</div>
  <div class="nav-links">
    <a href="index.html">Startseite</a>
    <a href="rezepti.html">Rezepte</a>
    <a href="onama.html">Über uns</a>
    <a href="kontakt.html">Kontakt</a>
    <a href="login.html">Anmelden</a>
    <a href="registracija.html">Registrieren</a>
  </div>
</nav>

<div class="search-bar">
  <input type="text" placeholder="Rezepte durchsuchen...">
</div>

<div class="container">
  <!-- Kategorie: Süße Rezepte -->
  <h2>Kategorie: Süße Rezepte</h2>
  <div class="recipe-card">
    <img src="img/kolac1.jpg" alt="Schokoladentorte">
    <div class="recipe-content">
      <h2>Schokoladentorte</h2>
      <p>Saftige Schokoladentorte mit Ganache-Glasur und reichhaltigen Schichten.</p>
      <a href="recepti/cokoladna-torta.html">Rezept ansehen</a>
    </div>
  </div>
  <div class="recipe-card">
    <img src="img/kolac2.jpg" alt="Käsekuchen">
    <div class="recipe-content">
      <h2>Käsekuchen</h2>
      <p>Cremiger Käsekuchen mit Fruchtguss nach Wahl.</p>
      <a href="recepti/cheesecake.html">Rezept ansehen</a>
    </div>
  </div>
  <!-- Weitere süße Rezepte folgen... -->

  <!-- Kategorie: Herzhafte Rezepte -->
  <h2>Kategorie: Herzhafte Rezepte</h2>
  <div class="recipe-card">
    <img src="img/pita1.jpg" alt="Käsepita">
    <div class="recipe-content">
      <h2>Käsepita</h2>
      <p>Traditionelle hausgemachte Pita mit reichhaltiger Käse-Ei-Füllung.</p>
      <a href="recepti/pita-sa-sirom.html">Rezept ansehen</a>
    </div>
  </div>
  <div class="recipe-card">
    <img src="img/peciva1.jpg" alt="Mini-Pizzen">
    <div class="recipe-content">
      <h2>Mini-Pizzen</h2>
      <p>Schnelle und leckere Mini-Pizzen – ideal fürs Frühstück oder Partys.</p>
      <a href="recepti/mini-pizze.html">Rezept ansehen</a>
    </div>
  </div>
  <!-- Weitere herzhafte Rezepte folgen... -->
</div>

<footer>
  <p>&copy; 2025 Süße Rezepte. Alle Rechte vorbehalten. | Kontakt: info@slatkirecepti.hr</p>
</footer>

<script>
  // JavaScript code for search or other interactions can go here
</script>

</body>
</html>