body {
    background-color: #ffeef6;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #ffd6eb;
    padding: 0;
    border-bottom: 3px solid #f8a9c4;
}

.header-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #f8a9c4;
}

h1 {
    color: #d24c7c;
    margin: 10px 0 0 0;
    font-size: 2.5em;
}

.subtitle {
    color: #a94f72;
    font-style: italic;
    margin-bottom: 15px;
}

main {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

section {
    background-color: #fff0f7;
    border: 2px dashed #f3a6c9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

h2 {
    color: #d24c7c;
}

/* Vorstellung mit Bild nebeneinander */
.intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.intro-text {
    flex: 1 1 300px;
    text-align: left;
}

.intro-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 3px solid #f8a9c4;
    border-radius: 15px;
}

/* Galerie */
.gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #f8a9c4;
    border-radius: 10px;
    background-color: white;
}

footer {
    background-color: #ffd6eb;
    padding: 10px;
    font-size: 0.9em;
    border-top: 3px solid #f8a9c4;

    /* Nur das Bild mit der Klasse "special" soll hervortreten */
.gallery a img.special {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery a img.special:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  border-color: hotpink;
  cursor: pointer;
}
/* Grundstil der Galerie */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Bilder allgemein */
.gallery a img {
  width: 160px;
  height: 160px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid #ffb3d9;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* 💕 Hover-Effekt – wie auf freund1.html */
.gallery a img:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  border-color: #ff66a3;
  cursor: pointer;
}
}
