/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Authentic Sans', sans-serif;
}



/* VIDEO BACKGROUND */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* OVERLAY 
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}*/

/* AUTHENTIC SANS */
@font-face {
  font-family: 'Authentic Sans';
  src: url('assets/AUTHENTIC-Sans/authentic-sans-90') format('woff2'),
       url('assets/AUTHENTIC-Sans/authentic-sans-90') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}



/* PAGE WRAPPER */
.page {
  position: relative;
  min-height: 100dvh; /* dynamic viewport height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* HEADER */
header {
  width: 100%;
  padding: 20px;
  text-align: center;
}

header img {
  width: 100%;
  max-width: 40%;
  height: auto;
}

/* CENTERED TEXT */
.coming-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #faf7f0;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  pointer-events: none;
}

/* FOOTER */
footer {
  width: 100%;
  padding: 15px;
  padding-bottom: calc(15px + 20px);
  color: #faf7f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-grid > div {
  padding: 15px;
}

.footer-grid > div:nth-child(1) {
  text-align: left;
}

.footer-grid > div:nth-child(2) {
  text-align: center;
}

.footer-grid > div:nth-child(3) {
  text-align: right;
}

footer a {
  color: #faf7f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;

}

footer a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {

  footer a {
   font-size: 16px;
  }

  header img {
   width: 100%;
   max-width: 90%;
   height: auto;
  }  

  .coming-soon {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div {
    text-align: center !important;
    padding: 3px;  /*less vertical spacing */

  }
}
