/*
Theme Name: Adverlize WIP
Description: Minimal single-page "coming soon" theme for the Adverlize website. No templates other than the front page.
Author: Adverlize
Version: 1.1
*/

:root{
  --primitives-blue-900: rgb(40,52,72);
  --primitives-blue-500: rgb(96,139,216);
  --primitives-gray-300: rgb(213,215,218);
}

*{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.wip-page{
  height: 100vh;
  width: 100%;
  background: var(--primitives-blue-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px;
  overflow: hidden;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body.admin-bar .wip-page{
  height: calc(100vh - 32px);
}

@media screen and (max-width: 782px){
  body.admin-bar .wip-page{
    height: calc(100vh - 46px);
  }
}

.wip-logo{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.wip-logo svg{
  width: 19px;
  height: 22px;
  flex-shrink: 0;
  color: #fff;
}

.wip-logo span{
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #fff;
  white-space: nowrap;
}

.wip-copy{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 640px;
  text-align: center;
}

.wip-copy h1{
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.wip-copy p{
  margin: 0;
  color: var(--primitives-gray-300);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.wip-contact{
  color: var(--primitives-blue-500);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
