body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
}

main {
  position: relative;
  background-image: url("images/hero.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  overflow: hidden;
}

/* Dunkler Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Inhalt */
.content {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8vh;
}

h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin: 0.5rem 0;
}

p {
  font-size: 1.25rem;
  text-align: center;
  margin: 0.5rem 0 1.5rem 0;
}

a {
  padding: 0.75rem 1.5rem;
  background-color: #FF3B3F;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

a:hover {
  background-color: #c82e32;
}

.confidence-text {
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  padding: 1rem 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  z-index: 2;
  position: relative;
}

section#contact {
  background-color: #000;
  color: white;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 1rem;
  background: #111;
  border: 1px solid #666;
  border-radius: 4px;
  color: white;
  font-family: 'Nunito', sans-serif;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  padding: 0.75rem;
  font-weight: bold;
  background: white;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #ddd;
}

.success {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #4CAF50;
  text-align: center;
}

.recaptcha-note {
  font-size: 0.75rem;
  margin-top: 2rem;
  opacity: 0.6;
  text-align: center;
  max-width: 600px;
}