/* ====================================
   NOT FOUND PAGE
==================================== */

.page-not-found-section {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 120px 24px;

  background: #f8fafc;

  position: relative;

  overflow: hidden;
}

/* BACKGROUND SHAPES */

.page-not-found-section::before,
.page-not-found-section::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  background: rgba(250, 204, 21, 0.08);

  filter: blur(80px);
}

.page-not-found-section::before {
  width: 350px;
  height: 350px;

  top: -100px;
  left: -100px;
}

.page-not-found-section::after {
  width: 300px;
  height: 300px;

  bottom: -100px;
  right: -100px;
}

.page-not-found-container {
  position: relative;
  z-index: 2;

  max-width: 800px;

  text-align: center;
}

/* TAG */

.page-not-found-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #111827;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 20px;
}

.page-not-found-tag::before {
  content: "";

  width: 8px;
  height: 8px;

  background: #facc15;
}

/* 404 */

.page-not-found-number {
  font-size: clamp(120px, 18vw, 240px);

  line-height: 1;

  font-weight: 800;

  color: #111827;

  margin-bottom: 10px;

  position: relative;
}

.page-not-found-number::after {
  content: "404";

  position: absolute;

  left: 8px;
  top: 8px;

  color: rgba(250, 204, 21, 0.25);

  z-index: -1;
}

/* TITLE */

.page-not-found-title {
  font-size: clamp(34px, 4vw, 62px);

  line-height: 1.15;

  color: #111827;

  margin-bottom: 20px;
}

/* DESCRIPTION */

.page-not-found-description {
  max-width: 600px;

  margin: 0 auto 40px;

  color: #64748b;

  font-size: 18px;

  line-height: 1.9;
}

/* BUTTONS */

.page-not-found-actions {
  display: flex;
  justify-content: center;
  gap: 16px;

  flex-wrap: wrap;
}

.page-not-found-btn-primary,
.page-not-found-btn-secondary {
  height: 58px;

  padding: 0 30px;

  border-radius: 8px;

  text-decoration: none;

  font-weight: 700;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: 0.35s ease;
}

/* PRIMARY */

.page-not-found-btn-primary {
  background: #facc15;

  color: #111827;
}

.page-not-found-btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(250, 204, 21, 0.25);
}

/* SECONDARY */

.page-not-found-btn-secondary {
  background: #ffffff;

  color: #111827;

  border: 1px solid rgba(15, 23, 42, 0.08);
}

.page-not-found-btn-secondary:hover {
  transform: translateY(-4px);

  border-color: #facc15;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .page-not-found-section {
    padding: 100px 24px;
  }

  .page-not-found-description {
    font-size: 16px;
  }

  .page-not-found-actions {
    flex-direction: column;
  }

  .page-not-found-btn-primary,
  .page-not-found-btn-secondary {
    width: 100%;
  }

}