/* === Grundlayout & globaler Cursor === */
body {
  margin: 0;
  padding: 0;
  background-color: #f9f6f0;
  font-family: Georgia, serif;
  color: #3c2a21;
  cursor: url('../images/mine.png') 0 0, auto;
}

/* === Mauszeiger bleibt überall als Füllfeder aktiv === */
a, a:hover, a:active,
.clickable,
input[type="checkbox"] + label,
button {
  cursor: url('../images/mine.png') 0 0, auto;
}

/* === Kopfbereich === */
.site-header {
  position: sticky;
  top: 0;
  background-color: #f9f6f0;
  padding: 20px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo {
  width: 75%;
  max-width: 165px;
  height: auto;
  margin-bottom: 10px;
}

.site-header h1 {
  font-size: 2.2em;
  margin: 0;
}

/* === Hauptinhalt === */
.wrapper {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}

/* === Bildvergrößerung per Klick === */
.bild-container {
  display: block;
  text-align: center;
  padding-top: 80px;
}

input[type="checkbox"] + label .clickable {
  transition: transform 0.4s ease-in-out;
}

input[type="checkbox"]:checked + label .clickable {
  transform: scale(1.8);
}

/* === Bildstil === */
.figure {
  width: 50%;
  max-width: 200px;
  height: auto;
  margin: 30px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* === Text & Links === */
p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 15px;
}

a {
  color: #6c3f99;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === Footer === */
footer {
  margin-top: 40px;
  font-size: 0.9em;
}

/* === Responsive Design für Mobilgeräte === */
@media (max-width: 600px) {
  .site-header h1 {
    font-size: 1.6em;
  }

  .logo {
    width: 75%;
    max-width: 140px;
  }

  .figure {
    width: 80%;
    max-width: 180px;
  }

  p {
    font-size: 1em;
  }

  .bild-container {
    padding-top: 60px;
  }
}