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

.error-404 {
  position: relative;

  height: 100vh;
  min-height: 860px;

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

  overflow: hidden;

  background: radial-gradient(
    circle at top,
    #4b3d22 0%,
    #1d1a17 45%,
    #111111 100%
  );
}

/*==================================
        OVERLAY
==================================*/

.error-404-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.7));
}

/*==================================
        CONTAINER
==================================*/

.error-404-container {
  position: relative;

  z-index: 2;

  max-width: 1500px;
  width: 90%;
  margin: auto;

  text-align: center;
}

/*==================================
        TYPOGRAPHY
==================================*/

.error-404-subtitle {
  display: inline-block;

  margin-bottom: 18px;

  color: #cda74c;

  letter-spacing: 0.45em;

  font-size: 14px;

  font-weight: 600;
}

.error-404-title {
  font-size: clamp(120px, 18vw, 260px);

  line-height: 0.85;

  color: #ffffff;

  font-weight: 700;

  margin-bottom: 18px;

  text-shadow: 0 0 40px rgba(205, 167, 76, 0.12);
}

.error-404-heading {
  color: #cda74c;

  font-size: clamp(30px, 3vw, 54px);

  letter-spacing: 0.05em;

  margin-bottom: 25px;
}

.error-404-text {
  max-width: 650px;

  margin: auto;

  color: rgba(255, 255, 255, 0.75);

  line-height: 1.9;

  font-size: 18px;
}

/*==================================
        BUTTON
==================================*/

.error-404-actions {
  margin-top: 50px;
}

.error-404-btn {
  display: inline-flex;

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

  width: 220px;
  height: 56px;

  text-decoration: none;

  background: #cda74c;

  color: #ffffff;

  font-weight: 600;

  letter-spacing: 0.08em;

  transition: 0.35s;
}

.error-404-btn:hover {
  background: #b89037;

  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(205, 167, 76, 0.25);
}

/*==================================
        DECORATION
==================================*/

.error-404-circle {
  position: absolute;

  border: 1px solid rgba(205, 167, 76, 0.12);

  border-radius: 50%;
}

.error-404-circle-1 {
  width: 600px;
  height: 600px;

  left: -220px;
  bottom: -260px;
}

.error-404-circle-2 {
  width: 450px;
  height: 450px;

  right: -140px;
  top: -120px;
}

/*==================================
        RESPONSIVE
==================================*/

@media (max-width: 768px) {
  .error-404-title {
    font-size: 120px;
  }

  .error-404-heading {
    font-size: 28px;
  }

  .error-404-text {
    font-size: 16px;
  }

  .error-404-btn {
    width: 100%;

    max-width: 280px;
  }
}
