@font-face {
  font-family: "Cresinta";
  src:
    url("./Cresinta-Regular.woff2") format("woff2"),
    url("./Cresinta-Regular.woff") format("woff"),
    url("./Cresinta-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-bg: #203327;
  --text-primary: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--brand-bg);
  color: var(--text-primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
}

.logo {
  width: 140px;
  height: auto;
  margin-bottom: 2.2rem;
}

/* Tagline – Cresinta applied here */
.tagline {
  font-family: "Cresinta", serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1.4rem;
  letter-spacing: 0.4px;
}

.coming-soon {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
}
