/*
 * Moko Consulting — Error Page Styles
 * Used by 404.tmpl (loaded via base/head + theme CSS)
 */

.moko-error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 3rem 2rem;
}

.moko-error-logo img {
  width: 200px;
  height: auto;
}

.moko-error-code {
  font-size: 6rem;
  font-weight: 800;
  color: #001B4C;
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.moko-error-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #001B4C;
  margin-bottom: 1rem;
}

.moko-error-message {
  font-size: 1.05rem;
  color: #6c757d;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.moko-error-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.moko-error-actions .ui.primary.button {
  background-color: #2a69b8;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 500;
  padding: 0.65rem 1.75rem;
}

.moko-error-actions .ui.primary.button:hover {
  background-color: #224faa;
}

.moko-error-footer {
  font-size: 0.8rem;
  color: #adb5bd;
  margin-top: 2rem;
}

.moko-error-footer a {
  color: #2a69b8;
  text-decoration: none;
}

.moko-error-footer a:hover {
  text-decoration: underline;
}
