/* Motimaker – Coming Soon Styles */
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #FF6A00; /* Orange */
  --bg: #FAF9F6;    /* Hintergrund */
  --text: #000000;  /* Schwarz */
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.overlay {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.brand {
  width: clamp(320px, 70vw, 1100px);
  height: auto;
  margin-bottom: 1.25rem;
}

.logo {
  width: clamp(140px, 22vw, 260px);
  height: auto;
  margin-bottom: 1.25rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
}

.tagline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  opacity: .9;
}

.cta {
  margin-top: .5rem;
  display: inline-block;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: transform .12s ease, filter .12s ease;
}

.cta:hover { transform: translateY(-1px); filter: brightness(1.05); }

footer {
  margin-top: 2rem;
  font-size: .85rem;
  opacity: .8;
}
