/* ==========================
   PAGE NOT FOUND
========================== */

.page-not-found {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  overflow: hidden;

  padding: 140px 24px 100px;

  background: linear-gradient(135deg, #f08a0000 0%, var(--primary-dark) 100%);
}

/* Decorative Circles */

.page-not-found::before {
  content: "";

  position: absolute;

  width: 750px;
  height: 750px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  top: -350px;
  right: -250px;
}

.page-not-found::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  bottom: -220px;
  left: -180px;
}

/* ==========================
   CONTENT
========================== */

.page-not-found-container {
  max-width: 900px;

  text-align: center;

  position: relative;
  z-index: 2;
}

.page-not-found-subtitle {
  display: inline-block;

  color: rgba(255, 255, 255, 0.9);

  font-size: 20px;
  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 20px;
}

/* 404 Number */

.page-not-found-number {
  font-family: var(--secondary-font);

  font-size: clamp(9rem, 20vw, 20rem);

  line-height: 0.9;

  margin: 0;

  font-weight: 900;

  color: rgb(255 255 255 / 48%);

  user-select: none;
}

/* Heading */

.page-not-found-title {
  font-family: var(--secondary-font);

  font-size: clamp(2.5rem, 5vw, 5rem);

  line-height: 1.1;

  color: var(--white);

  margin-top: 0;
  margin-bottom: 25px;

  position: relative;
  z-index: 2;
}

/* Description */

.page-not-found-description {
  max-width: 650px;

  margin: 0 auto 45px;

  color: rgba(255, 255, 255, 0.85);

  font-size: 18px;

  line-height: 1.9;
}

/* Button */

.page-not-found-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 62px;

  padding: 0 40px;

  border-radius: 12px;

  background: var(--white);

  color: var(--primary);

  text-decoration: none;

  font-weight: 700;

  transition: 0.35s ease;
}

.page-not-found-btn:hover {
  transform: translateY(-4px);

  background: #f8f8f8;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {
  .page-not-found-title {
  }
}

@media (max-width: 768px) {
  .page-not-found {
    padding: 120px 20px 80px;
  }

  .page-not-found-subtitle {
    font-size: 18px;
  }

  .page-not-found-title {
    font-size: 2.5rem;
  }

  .page-not-found-description {
    font-size: 16px;
  }

  .page-not-found-btn {
    /* width: 100%;
    max-width: 320px; */
  }
}

@media (max-width: 576px) {
  .page-not-found-number {
    font-size: 7rem;
  }

  .page-not-found-title {
    font-size: 2rem;
  }
}
