/* Basis */
body {
    margin: 0;
    padding: 0;
    background-color: #245473;
    font-family: "Quicksand", sans-serif;
    color: white;
    line-height: 1.4;
  }
  
  /* Bild oben */
  .image-top {
    position: relative;
    width: 96%;
    padding: 2%;
    overflow: hidden;
    border-radius: 20px;
  }
  .background-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }
  
  /* Textboxen */
  .textbox {
    background-color: #245473;
    padding: 20px;
    margin: 20px auto;
    border-radius: 15px;
    width: 90%;
    color: white;
    font-size: 1rem;
  }
  
  .textbox p {
    margin: 8px 0;
  }
  
  .bold { font-weight: 600; }
  .big { font-size: 1.3em; }
  .center { text-align: center; }
  .right { text-align: right; }
  .left { text-align: left; }
  .spacer { margin-top: 20px; }
  
  /* Sprechzeiten */
  .sprechzeiten {
    display: grid;
    gap: 5px;
    margin-top: 10px;
  }
  .sprechzeiten .row {
    display: grid;
    grid-template-columns: 100px auto;
    gap: 10px;
  }
  .sprechzeiten .day { font-weight: 600; }
  
  /* Kontakt */
  .komm {
    display: grid;
    gap: 5px;
    margin-top: 20px;
  }
  .komm .row {
    display: grid;
    grid-template-columns: 30px auto;
    gap: 10px;
  }
  .kommtext a {
    color: white;
    text-decoration: none;
  }
  .kommtext a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 15px;
    margin-top: 40px;
  }
  footer button {
    margin-top: 10px;
    background-color: #245473;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  /* Impressum Modal */
  #impressum-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
  }
  #impressum-content {
    background-color: #245473;
    color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 85%;
    max-width: 400px;
    position: relative;
  }
  .close-button {
    position: absolute;
    top: 10px; right: 16px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
  }

  .trenner {
    width: 96%;
    margin: 25px auto;
    border: none;
    border-top: 2px solid white; /* dicke Linie */
    border-radius: 1px;
  }
  