@charset "utf-8";
/* CSS Document */
/* --- Grundlayout --- */
body {
  margin: 0;
  font-family: Calibri Light, sans-serif;
  background-color: #f3f4f6;
  color: #636362;
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  line-height: 1.5rem;
}

.container {
  background-color: #ffffff;
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.logo {
  display: block;
  margin: 0 auto 2.5rem;
}

/* --- Typografie --- */
h1 {
  font-size: 2rem;
  color: #84a5b9;
  font-weight: bold;
  margin-bottom: 1rem;
	line-height: 2rem;
}

p, li, label, input, textarea {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

a {
	color: #636362;
	text-decoration: none;
}

/* --- Buttons --- */
  .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    background-color: #92a787;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
  }
  .btn:hover {
    background-color: #84a5b9;
    transform: scale(1.1);
  }

.btn-kontakt {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  background-color: #92a787;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-kontakt:hover {
  background-color: #84a5b9;
}

/* --- Footer --- */
.footer {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.footer a {
  text-decoration: underline;
  color: #6b7280;
  margin-right: 1rem;
}

.footer a:hover {
  color: #1f2937;
}

/* --- Formular --- */
input, textarea {
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

/* --- Bild-Hover auf Startseite --- */
.image-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto 0.3rem;
}

.petra-image, .petra-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #84a5b9;
  transition: opacity 0.8s ease;
}

.petra-hover {
  opacity: 0;
}

.image-wrapper:hover .petra-hover {
  opacity: 1;
}

.image-wrapper:hover .petra-image {
  opacity: 0;
}

