@font-face {
	font-family: 'Allura-Regular';
	src:
		url('/fonts/allura/Allura-Regular.ttf') format('truetype');
	font-weight: 200 700;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'Synonym-Variable';
	src:
		url('/fonts/synonym/Synonym-Variable.woff2') format('woff2'),
		url('/fonts/synonym/Synonym-Variable.woff') format('woff'),
		url('/fonts/synonym/Synonym-Variable.ttf') format('truetype');
	font-weight: 200 700;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'Chillax-Variable';
	src:
		url('/fonts/chillax/Chillax-Variable.woff2') format('woff2'),
		url('/fonts/chillax/Chillax-Variable.woff') format('woff'),
		url('/fonts/chillax/Chillax-Variable.ttf') format('truetype');
	font-weight: 200 700;
	font-display: swap;
	font-style: normal;
}

:root {
  --font-coming-soon: 'Allura-Regular', sans-serif;
  --font-headings: 'Chillax-Variable', sans-serif;
	--font-body: 'Synonym-Variable', sans-serif;

  --color-navy: oklch(0.243 0.062 277);
  --color-gold: #CDA341;
}

body {
  height: 100vh;
  background-color: var(--color-navy);
  color: #FFFFFF;
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: var(--font-headings);
  line-height: 1.5;
  font-weight: 500;
}

h1 {
  font-size: 3em;
}

h1.coming-soon {
  font-family: var(--font-coming-soon);
  font-size: 5em;
  text-align: center;
  line-height: 1.2;
  color: var(--color-gold);
}

h2 {
  font-size: 2em;
  text-align: center;
}

.layout {
  height: 100%;
  max-width: 680px;
  padding: 0 1em;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

footer {
  padding: 8px 0;
  font-size: 0.8em;
  text-align: center;
}

.logo-lockup {
 display: flex;
 flex-direction: column;
 gap: 2em;
}

@media (min-width: 640px) {
 .logo-lockup {
    flex-direction: row;
  }
}

.logo {
  background: center / contain no-repeat url('/assets/logo-web.png');
  min-width: 250px;
  height: 0;
  padding-bottom: 50%;
}

.slogan {
  flex-grow: 1;
  text-align: center;
  align-self: center;
}

@media (min-width: 640px) {
  .slogan {
    text-align: left;
  }
}

.cta {
  text-align: center;
  padding: 3.2em 0;
}

.button {
  background-color: var(--color-gold);
  display: inline-block;
  padding: 0.1em 0.5em;
  color: black;
  font-size: 2em;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  margin: 0 auto;
}

.button:hover {
  filter: brightness(1.2);
}
