/* Reset & Basis */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Calibri Light", "Calibri", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: white;
  background: url("../images/background.jpg") no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

/* Overlay für Lesbarkeit */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Header */
.topbar {
  background-color: #0078D4;
  color: white;
  padding: 8px 20px;
}

.topbar nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  font-weight: 300;
}

.topbar a:hover {
  text-decoration: underline;
}

.email {
  font-weight: 300;
}

/* Container für Inhalte */
.container {
  max-width: 900px;
  margin: 80px auto 40px auto;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 10px;
  line-height: 1.6;
  font-size: 1rem;
  color: white;
}

/* Main */
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 120px); /* Platz für Header + Footer */
  text-align: center;
}

/* Footer */
.footer {
  background: rgba(0,0,0,0.7);
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    margin: 40px 10px;
    padding: 15px;
    font-size: 0.95rem;
  }
}
/* Center Text */
.center-text {
    text-align: center;
    margin: 60px 0 40px 0; /* Abstand oben/unten */
    font-family: "Calibri Light", "Calibri", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 2rem;
    color: white;
}
.center-text .heart {
    color: red;
    margin-right: 8px;
}
/* Badges */
.badge-container {
    position: absolute;
    bottom: 20px; /* Abstand vom unteren Rand */
    left: 50%;    /* Horizontal mittig */
    transform: translateX(-50%);
    text-align: center;
}
.badge-container img {
    width: 250px; /* Bildgröße */
    height: auto;
    margin: 10px;

    h2, h3, h4 {
  margin-top: 20px;
  color: white;
}
}