/* Self-hosted font (Sora) */
@font-face {
  font-family: 'Sora';
  src: url('/fonts/Sora-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sora';
  src: url('/fonts/Sora-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset & base */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #ffffff;
  color: #e95922ff;
  font-family: 'Sora', sans-serif;
}

/* Center content */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 20px;
}

.logo img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.action-words {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.contact {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.contact a {
  color: #e95922ff;
  text-decoration: none;
  font-weight: bold;
}

.footer {
  font-size: 0.8rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .action-words {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

