/* Reset & Grundstyles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  color: #333;
  background: #f4f4f2;
}

/* Header */
.site-header {
  background: #a4c418;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
.site-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.site-header p {
  font-size: 1.2rem;
}

/* Hero-Section */
.hero {
  display: flex;
  align-items: center;
  padding: 2rem;
  background: #fffbe6;
}
.hero img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  margin-right: 1.5rem;
}
.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Galerie */
.gallery {
  padding: 2rem;
  text-align: center;
}
.gallery h2 {
  margin-bottom: 1rem;
}
.preview {
  margin-bottom: 1rem;
}
/* Vorschau-Bild quadratisch */
.preview img {
  width: 700px; /* feste Breite */
  aspect-ratio: 1 / 1; /* Verhältnis 1:1 */
  object-fit: cover; /* zentriert und beschnitten */
  border: 4px solid #8b4513;
  border-radius: 8px;
}
.thumbnails {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
/* Thumbnails quadratisch */
.thumbnails img {
  width: 80px; /* feste Breite */
  aspect-ratio: 1 / 1; /* Verhältnis 1:1 */
  object-fit: cover; /* zentriert und beschnitten */
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.thumbnails img:hover,
.thumbnails img.active {
  border-color: #8b4513;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1rem;
  background: #a4c418;
  color: #fff;
  margin-top: 2rem;
}
