:root {
  /* Brand colors (shared with my-forever-adventure-www) */
  --brand-primary: #1a223d;
  --brand-secondary: #8fd9fb;
  --brand-third: #b3ebf2;
  --brand-fourth: #fdbcb4;
  --brand-fifth: #f9f9f9;

  --background: var(--brand-fifth);
  --foreground: var(--brand-primary);
  --secondary: var(--brand-third);
  --border: #d9d9d9;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.splash {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
}

.splash__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url('/assets/pattern-bg.png');
  background-repeat: repeat;
  background-size: 260px 260px;
}

.splash__icon {
  position: relative;
  z-index: 1;
  width: 14rem;
  height: auto;
}

@media (min-width: 640px) {
  .splash__icon {
    width: 18rem;
  }
}

@media (min-width: 768px) {
  .splash__icon {
    width: 20rem;
  }
}

.splash__tagline {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .splash__tagline {
    font-size: 1.875rem;
  }
}

.footer {
  margin-top: 4rem;
  padding: 1.5rem 1rem;
  background: rgba(179, 235, 242, 0.2);
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.footer__legal {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(26, 34, 61, 0.4);
}
