  /* Grundlayout */
  body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #f9f7f4;
    color: #333;
  }

  /* Header */
  header {
    background-color: #831e34;
    color: white;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .header-left {
    background: white;
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }

  .header-left img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }

  nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
    flex-wrap: wrap;
  }

  nav a {
    color: white;
    margin-left: 1rem;
    text-decoration: none;
    font-size: 1rem;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: 1rem;
  }

  /* Hero */
  .hero {
    background-image: url('images/weinberg2.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    color: white;
    text-align: center;
    position: relative;
  }

  .hero::after {
    content: '';
    background-color: rgba(0,0,0,0);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
  }

  .hero h1,
  .hero form {
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subline {
    margin-top: -1.5rem;
    font-size: 1.4rem;
  }

  .hero input[type="text"] {
    padding: 0.8rem;
    width: 75%;
    max-width: 700px;
    border: none;
    border-radius: 4px;
    margin-top: 1rem;
    font-size: 1rem;
  }

  /* Filter Button */
  .filters-toggle {
    display: flex;
    justify-content: center;
    margin: 1rem;
  }

  .filters-toggle button {
    padding: 0.6rem 1.2rem;
    background-color: #831e34;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  /* Filter Modal */
  .filters-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .filters-modal .modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    z-index: 10000;
  }

  .filters-modal.show {
    display: flex;
  }

  .modal-close {
    float: right;
    cursor: pointer;
    font-size: 1.2rem;
    color: #831e34;
  }

  .filters-form {
    display: grid;
    gap: 1rem;
  }

  .filter-group {
    display: flex;
    flex-direction: column;
  }

  .filter-group label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #444;
  }

  .filter-group select {
    padding: 0.6rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #fdfdfd;
    transition: border 0.2s ease, box-shadow 0.2s ease;
  }

  .filter-group select:focus {
    border-color: #831e34;
    box-shadow: 0 0 0 2px rgba(131, 30, 52, 0.2);
    outline: none;
  }

  /* Winzerkarten */
  .section {
    padding: 2rem;
  }

  .winzer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .winzer-card {
    width: 100%;
    height: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .winzer-name {
    background-color: #a64050;
    color: white;
    font-size: 1.2rem;
    margin: -1rem -1rem 1rem -1rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
  }

  .winzer-content {
    display: flex;
    gap: 1rem;
    flex-grow: 1;
  }

  .winzer-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  .winzer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .adresse {
    font-weight: 500;
    color: #555;
    margin: 0;
  }

  .beschreibung {
    font-size: 0.85rem;
    color: #444;
    margin: 0.5rem 0;
    flex-grow: 1;
  }

  .url {
    font-size: 0.85rem;
    color: #444;
    margin: 0;
    line-height: 1.2;
  }

  .url a {
    color: #0066cc;
    text-decoration: underline;
  }

  .url a:hover {
    color: #004999;
  }

  .mehr-button {
    align-self: flex-start;
    padding: 0.5rem 1rem;
    background-color: #831e34;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
  }

  .mehr-button:hover {
    background-color: #a22c48;
  }

  /* Karte */
  #map {
    height: 400px;
    width: 90%;
    margin: 2rem auto;
    border-radius: 8px;
    background-color: #e0e0e0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  }

  /* Footer */
  footer {
    background-color: #eee;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
  }

  /* Mobile */
  @media (max-width: 868px) {
    .winzer-card {
      width: 100%;
      height: auto;
    }

    .winzer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .winzer-image {
      width: 100%;
      max-width: 350px;
      height: 220px;
      object-fit: cover;
    }

    .winzer-info {
      align-items: center;
    }

    .mehr-button {
      align-self: center;
    }

    .verkaufte-sorten {
      display: none !important;
    }
  }

  /* Menü für Mobilgeräte */
  @media (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #831e34;
    }

    nav.show {
      display: flex;
    }

    .menu-toggle {
      display: block;
    }
  }
