/* =========================================================
   RENDSZER OLDALAK – 404, KARABANTARTÁS
   ========================================================= */

/* 404 oldal */

.error-page {
  padding: 4rem 0 4.5rem;
}

.error-page-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.error-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.error-code {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #111827;
  margin-bottom: 0.4rem;
}

.error-title {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.error-text {
  font-size: 0.97rem;
  color: #4b5563;
  margin-bottom: 1.4rem;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Egyszerű outline gomb a már meglévő btn-hez */

.btn-outline {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.92rem;
  font-weight: 500;
  color: #374151;
  background: #ffffff;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Karbantartás oldal */

.maintenance-page {
  padding: 4rem 0 4.5rem;
}

.maintenance-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.maintenance-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.maintenance-title {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.maintenance-text {
  font-size: 0.97rem;
  color: #4b5563;
  margin-bottom: 0.7rem;
}

.maintenance-contact {
  list-style: none;
  margin: 0.8rem 0 1.4rem;
  padding: 0;
  font-size: 0.95rem;
  color: #111827;
}

.maintenance-contact li + li {
  margin-top: 0.25rem;
}

.maintenance-contact .note {
  font-size: 0.8rem;
  color: #9ca3af;
  font-style: italic;
}

.maintenance-actions {
  display: flex;
  justify-content: center;
}

.maintenance-credits {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.maintenance-credits-text {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 0.8rem;
}

.maintenance-credits-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.maintenance-credits-logo {
  height: 132px;          /* itt tudod állítani, mekkora legyen a logó */
  max-width: 180px;
  display: block;
}

/* Mobil finomhangolás */

@media (max-width: 640px) {
  .error-page,
  .maintenance-page {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .error-code {
    font-size: 3.2rem;
  }

  .error-title,
  .maintenance-title {
    font-size: 1.3rem;
  }

  .maintenance-credits-logo {
    height: 76px;
    max-width: 160px;
  }
}


