/* ========================================
   ERROR 404 PAGE
   ======================================== */

.error-404-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.error-404-section {
  position: relative;
  min-height: calc(100vh - 80px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background */
.error-404-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.error-404-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.error-404-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

/* Content */
.error-404-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 3rem 1.5rem;
}

.error-404-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.error-404-code {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}

.error-404-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
}

.error-404-divider {
  width: 200px;
  margin: 0.5rem 0;
}

.error-404-message {
  font-size: 1.125rem;
  color: var(--color-light);
  line-height: 1.8;
  max-width: 600px;
  margin: 0;
  opacity: 0.9;
}

.error-404-btn {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .error-404-page {
    padding-top: 60px;
  }

  .error-404-section {
    min-height: calc(100vh - 60px);
  }

  .error-404-container {
    padding: 2rem 1.5rem;
  }

  .error-404-code {
    font-size: 1rem;
  }

  .error-404-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .error-404-message {
    font-size: 1rem;
  }

  .error-404-divider {
    width: 150px;
  }

  .error-404-btn {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .error-404-title {
    font-size: 1.75rem;
  }

  .error-404-message {
    font-size: 0.95rem;
  }

  .error-404-divider {
    width: 120px;
  }
}
