@font-face {
  font-family: "LR Title";
  src: url("Fonts/LRTitle-Regular.woff2") format("woff2"),
       url("Fonts/LRTitle-Regular.woff") format("woff"),
       url("Fonts/LRTitle-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LR Retrofied";
  src: url("Fonts/LRRetrofied-Regular.woff2") format("woff2"),
       url("Fonts/LRRetrofied-Regular.woff") format("woff"),
       url("Fonts/LRRetrofied-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Not Found Page ---------- */
.notfound-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;       /* full viewport height */
  text-align: center;
  padding: 2rem;
  flex-direction: column;
  gap: 2rem;               /* spacing between 404 and paragraph */
  background-color: #ffffff; /* optional background */
}

/* 404 error code */
.error-code {
  font-family: "LR Title", sans-serif;
  font-size: 100px;         /* tentative size */
  font-weight: 400;
  margin: 0;
  line-height: 1;
  color: #0078FF;           /* optional brand color */
}
  
  .error-message {
  font-family: "LR Retrofied", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;        /* readable size */
  max-width: 400px;         /* constrain line length */
  margin: 0 auto;
  line-height: 1.6;
  }
  
  .btn-home {
  display: inline-block;
  margin-top: 1.5rem;            /* space above button */
  padding: 0.75rem 1.5rem;       /* vertical and horizontal padding */
  background-color: #E713A6;     /* Lyons-Romo pink */
  color: #ffffff;                /* text color */
  font-family: "LR Retrofied", system-ui, sans-serif;
  font-weight: 400;
  text-decoration: none;         /* remove underline */
  border-radius: 8px;            /* rounded corners */
  transition: background 0.3s ease;
  font-size: 1rem;
}

.btn-home:hover {
  background-color: #0078FF;     /* gradient hover optional, blue */
}