/* Header & Navigation ausblenden */
.md-header,
.md-tabs,
.md-sidebar {
  display: none !important;
}
.md-footer {
  display: none;
}

/* Seitentitel ("Home") ausblenden */
.md-content__inner > h1 {
  display: none;
}

/* Schwarzer Hintergrund */
body {
  background: #0f0f0f !important;
}

/* Seite komplett zentrieren */
.md-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 95vh;
}

/* Visitenkarte */
.business-card {
  background: white;
  padding: 2rem 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  text-align: center;
  max-width: 650px;
}

/* Name */
.business-card .name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Untertitel */
.business-card .subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.7rem;
}

/* Icons */
.business-card .icons a {
  font-size: 0.9rem;
  margin: 0 0.5rem;
  color: #333;
  transition: color 0.2s ease;
}

/* Hover */
.business-card .icons a:hover {
  color: #0077b5; /* LinkedIn-Blau */
}

/* Links unten */
.business-card .links {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.business-card .links a {
  text-decoration: none;
  color: #0077b5;
  font-weight: 500;
}

.business-card .links a:hover {
  text-decoration: underline;
}

