/* ==========================================================
   Platzhalterseite – Artificial Thinking Ai
   ========================================================== */

body {
  font-family: 'Simplon', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333333;
  min-height: 100vh;
  margin: 0;
    font-size: 22px;
}

.font-mono {
  font-family: 'Simplon Mono', monospace;
}

/* Zentriert den Inhalt vertikal und horizontal */
.placeholder-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

strong, b {
    font-weight: 500;
}

/* Begrenzt die Breite des Inhalts und zentriert den Text */
.placeholder-content {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.logo {
  max-width: 240px;
  height: auto;
}

.logo.small {
  max-width: 180px;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #555555;
}

a.text-primary {
    color: #F4A81D !important;
}

/* Primärer Button (orange, wie im Entwurf) */
.btn-primary-custom {
  background-color: #F4A81D;
  border: 1px solid #000;
  color: #1a1a1a;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.btn-primary-custom:hover {
  background-color: #e29c17;
  color: #1a1a1a;
    border-color:#000;
}

/* Sekundärer Button (grau) */
.btn-secondary-custom {
  background-color: #ECECEC;
  border: 1px solid #000;
  color: #333333;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.btn-secondary-custom:hover {
  background-color: #dedede;
  color: #333333;
    border-color:#000;
}