// Error page styles (404, 500, etc.)

.error-page {
  //background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
  color: white;

  &__container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
  }

  &__content {
    max-width: 500px;
    padding: 2rem;
  }

  &__icon {
    font-size: 4rem;
    color: var(--bs-gray-600);
    margin-bottom: 1rem;
    opacity: 0.7;
  }

  &__code {
    font-size: 6rem;
    font-weight: bold;
    color: var(--bs-gray-600);
    margin-bottom: 0;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);

    @media (max-width: 768px) {
      font-size: 4rem;
    }
  }

  &__title {
    font-size: 1.5rem;
    color: var(--bs-gray-600);
    margin-bottom: 1rem;
    font-weight: 500;
  }

  &__description {
    font-size: 1.1rem;
    color: var(--bs-gray-600);
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  &__button {
    background: var(--bs-primary);
    border: 2px solid var(--bs-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;

    &:hover {
      background: var(--bs-blue);
      border-color: var(--bs-blue);
      color: white;
      text-decoration: none;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    &:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
    }

    i {
      margin-right: 0.5rem;
    }
  }
}

// Dark mode adjustments
[data-bs-theme="dark"] {
  .error-page {
    &__icon,
    &__code,
    &__title,
    &__description {
      color: var(--bs-gray-400);
    }
  }
}
