/* ============================================
   Not Found / Error Page — hamudi.top Style Guide 2026
   Файл подключается ПОСЛЕ main.css (каскад)
   ============================================ */

/* --- Layout --- */
.not-found-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Breadcrumbs --- */
.not-found-page .breadcrumb {
  margin-bottom: 16px;
}
.not-found-page .breadcrumb li a {
  font-size: 13px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0;
  text-transform: none;
}

/* --- Content --- */
.not-found-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  text-align: center;
  padding: 40px 0;
}

.not-found-page h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: none;
  color: #1a1a1a;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 16px;
}

.not-found-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 32px;
  max-width: 600px;
}

/* --- Button --- */
.not-found-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #800020;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Open Sans', sans-serif;
  line-height: 1;
}
.not-found-btn:hover {
  background: #a3002e;
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .not-found-page {
    padding: 0 12px;
  }
  .not-found-page h1 {
    font-size: 24px;
  }
  .not-found-text {
    font-size: 15px;
  }
  .not-found-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}
