/*
 * Theme Name: Strike Anywhere Teaser
 * Theme URI: https://strikeanywherefilms.com
 * Description: Teaser landing theme for Strike Anywhere Films
 * Version: 1.0
 * Author: Strike Anywhere Films
 */

@font-face {
  font-family: 'Roobert';
  src: url('Roobert/RoobertCollectionVF-TRIAL.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: 'Roobert', sans-serif;
  color:#fff;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: 0;
  position: fixed;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  opacity: 0.8;
}
.logo-container {
  position: relative;
  width: 70%;
}
h1 svg {
  aspect-ratio: 3340.34/331.06;
  width: 100%;
  height: auto;
  fill:#fff;
}
h2 {
  text-transform: uppercase;
}
.contact-info {
  display: flex;
  justify-content: space-between;
}
.logo-container h1 {
  margin: 0;
}
.contact-info h2 {
  font-weight: normal;
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
}
.contact-info h2:nth-child(2) {
  text-align: right;
}
.contact-info a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .logo-container {
    position: relative;
    width: 90%;
  }
  .contact-info {
    display: block;
  }
  .contact-info h2 {
    font-size: .75rem;
  }
  .contact-info h2:nth-child(1) {
    margin-bottom: 1rem;
  }
  .contact-info h2:nth-child(2) {
    text-align: left;
  }
}

.tile {
  position: relative;
  width: 100%;
  aspect-ratio: 835.28/699.53;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.tile svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
