/* Grundlayout */
body {
    background-color: #FFF6D8; /* sehr helles Gelb */
    margin: 0;
    padding: 8px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #4A4A4A;
  }
  
  /* Kopfbereich */
  #kopfleiste {
    height: 80px;
    background-color: #E4C85A; /* dunkleres, warmes Gelb */
    margin-bottom: 15px;
    padding-left: 15px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.15);
  }  
  
  #kopfleiste h1 {
    margin: 0;
    font-size: 36px;
    line-height: 80px;
    color: #6A1E3C; /* identisch mit aktivem Menüpunkt */
  }
  
  /* Navigation */
  #menu {
    background-color: #E4C85A; /* gleiche Farbe wie Kopf */
    float: left;
    margin-right: 15px;
    padding: 10px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.15);
  }
  
  #menu ul {
    list-style: none;
    padding: 0;
  }
  
  #menu li {
    font-size: 16px;
    margin-bottom: 12px;
    padding: 6px 10px;
  }
  
  #menu li.current {
    background-color: #F0C1D1; /* sanftes Rosa */
    color: #6A1E3C;
    font-weight: bold;
  }
  
  #menu a:hover {
    background-color: #F7DCE6;
  }
  
  /* Inhalt */
  #inhalt {
    background-color: #FFFBEA;
    overflow: hidden;
    padding: 10px 15px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.15);
  }
  
  #inhalt h1,
  #inhalt h2,
  #inhalt h3,
  #inhalt h4 {
    color: #7A5A00; /* warmes dunkles Gelb */
  }
  
  #inhalt h2 {
    font-size: 30px;
    text-align: center;
  }
  
  #inhalt h5 {
    color: #C23A6B;
    background-color: #F7DCE6;
    width: 70px;
  }
  
  #inhalt p {
    font-size: 15px;
    line-height: 1.4;
  }
  
  /* Container */
  #container {
    max-width: 960px;
    margin: 0 auto;
    background-color: #FFFBEA;
  }
  
  /* Tabellen */
  td {
    padding: 15px;
  }
  
  tr.zweitezeile {
    background-color: #F6EFCB;
  }
  
  table {
    border-collapse: collapse;
  }
  
  /* Footer / Rechtliches */
  #rechtliches {
    text-align: center;
  }

  #rechtliches a {
    display: inline-block;
    margin: 0 12px;
    padding: 4px 0;
  }
  
  #rechtliches div.current {
    background-color: #F0C1D1;
    color: #6A1E3C;
    font-weight: bold;
  }
  
  /* Formulare */
  form.kontaktformular fieldset,
  form.shop fieldset {
    margin-top: 25px;
    padding: 10px;
    width: 500px;
    border: none;
  }
  
  form.kontaktformular legend,
  form.shop legend {
    font-weight: bold;
    color: #7A5A00;
  }
  
  form.kontaktformular label,
  form.shop label {
    float: left;
    width: 130px;
  }
  
  form.kontaktformular input,
  form.kontaktformular textarea {
    width: 220px;
    margin-bottom: 5px;
  }
  
  form.kontaktformular textarea {
    width: 350px;
    height: 150px;
  }
  
  /* Hervorhebungen */
  .highlight {
    background-color: #F7E8B0;
  }
  
  strong,
  .bold {
    font-weight: bold;
  }
  
  /* Links – ruhig & einheitlich */
  a,
  a:link,
  a:visited,
  a:hover,
  a:active {
    color: inherit;
    text-decoration: none;
  }