/* Grundlegendes Layout */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #E0F7F4;
    color: #333;
    text-align: center;
    padding: 10px;
}

/* Überschriften */
h1 {
    font-family: Garamond, 'Times New Roman', serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: #F48FB1;
    margin-top: 20px;
}

h2 {
    font-family: Garamond, 'Times New Roman', serif;
    font-weight: bold;
    font-size: 1.8rem;
    color: #009688;
    margin-top: 20px;
    white-space: pre-line;
}

/* Einheitliche Bilddarstellung */
img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

/* Weitere Eindrücke Bilder-Gruppe */
.additional-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 0;
}

.paging-link {
    color: #E91E63 !important;
    text-decoration: none;
    margin: 0 5px;
    font-weight: normal;
}

.paging-link.active {
    font-weight: bold;
}


/* Navigation und Buttons */
nav a, .nav-button, button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #F48FB1;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.description-full {
  max-width: 600px;
  margin: 20px auto;
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-line;
  word-wrap: break-word;
}
