/* Grundlegende Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #f0f0f0;           /* Heller Text für dunklen Hintergrund */
  background-color: #1a1a1a;/* Fallback-Hintergrund */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;         /* Verhindert Scrollbalken durch Partikel */
}

/* Partikel-Hintergrund Container */
#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;               /* Hintergrundebene */
  background-color: #1a1a1a;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
/* Sicherheit: Canvas blockiert keine Klicks auf den Inhalt */
#particles-js canvas { pointer-events: none; }

/* Inhalts-Container */
.content-container {
  position: relative;       /* Stellt sicher, dass es über #particles-js liegt */
  z-index: 1;               /* Vordergrundebene */
  text-align: center;
  padding: 40px;
  max-width: 600px;
  width: 90%;
}

.logo {
  max-width: 550px;         /* Größe des Logos anpassen */
  height: auto;
}

h1 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.slogan {
  font-size: 1.2rem;
  color: #cccccc;           /* Etwas gedämpfter als der Haupttext */
  margin-bottom: 30px;
  font-weight: 300;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}

.status {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}

.contact-info { margin-top: 20px; font-size: 1rem; }
.contact-info p { margin-bottom: 8px; }

/* Links */
a {
  color: #00bfff;           /* Heller Blauton als Akzentfarbe */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
a:hover, a:focus { color: #1e90ff; text-decoration: underline; }

footer {
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.8rem;
  color: #aaa;              /* Unauffällige Footer-Farbe */
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Dezente Trennlinie */
}

/* === E-Mail-Reveal UI === */
.contact-row{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.email-btn{
  padding: 0.5rem 0.8rem;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  border-radius: 6px;
  transition: transform .06s ease, background-color .2s ease;
}
.email-btn:hover { transform: translateY(-1px); }
.email-btn:active { transform: translateY(0); }
.email-btn:focus-visible{
  outline: 2px solid #1e90ff; /* gut sichtbar auf dunklem BG */
  outline-offset: 2px;
}

.email-slot{
  margin-left: .5rem;
  white-space: nowrap;       /* verhindert Umbruch in der Adresse */
}

.email-link{
  text-decoration: underline;
  font-weight: 600;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  .slogan { font-size: 1.1rem; }
  .logo { max-width: 370px; }
}
@media (max-width: 480px) {
  .content-container { padding: 30px 20px; }
  h1 { font-size: 2rem; }
  .slogan { font-size: 1rem; }
  .logo { max-width: 320px; }
  .status, .contact-info { font-size: 0.9rem; }
  .email-btn{ padding: 0.45rem 0.7rem; }
  .email-slot{ margin-left: .4rem; }
}
