/* =========================================================
   Nyft.me — Minimal Single-Column Layout
   Mobile-first, no horizontal constraints
   ========================================================= */

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background-color: #E8ECF7; /* Nyft Pale Sky */
  color: #0D0D0F; /* Nyft Midnight */
}

/* Page Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 16px; /* intentional breathing room */
}

/* Header */
.site-header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}

/* Logo — dominant */
.logo {
  width: clamp(220px, 70vw, 360px);
  height: auto;
  display: block;
}

/* Main */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Button */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border-radius: 10px;
  background-color: #3D7BFF; /* Nyft Electric Blue */
  color: #E8ECF7;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.contact-btn:hover {
  filter: brightness(0.95);
}

.contact-btn:focus-visible {
  outline: 3px solid rgba(61, 123, 255, 0.35);
  outline-offset: 3px;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(13, 13, 15, 0.08);
  padding-top: 16px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.8rem;
  color: #4A4D52; /* Soft Graphite */
}

/* Desktop polish (optional, minimal) */
@media (min-width: 900px) {
  .logo {
    width: 300px;
  }

  .contact-btn {
    font-size: 1.1rem;
  }
}
