@font-face {
  font-family: "Frutiger";
  src: local("Frutiger Bold"), local("FrutigerBold"),
    url("fonts/hinted-FrutigerBold.woff2") format("woff2"),
    url("fonts/hinted-FrutigerBold.woff") format("woff"),
    url("fonts/FrutigerBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Frutiger";
  src: local("Frutiger"), url("fonts/hinted-Frutiger.woff2") format("woff2"),
    url("fonts/hinted-Frutiger.woff") format("woff"),
    url("fonts/Frutiger.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Interstate";
  src: local("Interstate-Bold"),
    url("fonts/hinted-Interstate-Bold.woff2") format("woff2"),
    url("fonts/hinted-Interstate-Bold.woff") format("woff"),
    url("fonts/InterstateBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Star4000";
  src: local("STAR 4"), local("STAR4"),
    url("fonts/hinted-STAR4.woff2") format("woff2"),
    url("fonts/hinted-STAR4.woff") format("woff"),
    url("fonts/Star4000.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  position: relative;
}
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
body::before {
  content: "";
  position: absolute;
  font-family: Frutiger, Arial, Helvetica, sans-serif;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/mistbg2025.webp") no-repeat center center fixed;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
}
video {
  width: 300px;
  height: auto;
  z-index: 2;
  margin-top: 100px;
  position: relative;
}
.coming-soon {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
  text-shadow: 4px 4px 0px #00000025;
  color: white;
  margin-top: 20px;
  z-index: 2;
  position: relative;
  font-size: 3rem;
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
}
.coming-soon-subtext {
  font-family: Frutiger, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  text-shadow: 2px 2px 0px #00000015;
  color: white;
  margin-top: 10px;
  z-index: 2;
  position: relative;
  font-size: 1.2rem;
  text-align: center;
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
}
.coming-soon-subtext a {
  color: #c2d1db
}
.project-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  z-index: 2;
  position: relative;
  gap: 20px;
}
.project-link {
  text-decoration: none;
  display: block;
  flex: 0 0 auto;
}
.project-box {
  background-color: rgba(76, 92, 124, 0.6);
  color: #b7cadb;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  font-family: Frutiger, sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
  backdrop-filter: blur(4px);
}
.project-box span {
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: bold;
  text-shadow: 3px 3px 0px #00000025;
}
.project-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
}
.project-box h3 {
  font-size: 1.6rem;
  color: white;
  margin: 12px 0;
}
.project-box p {
  font-size: 1.1rem;
  margin: 10px 0;
}
.interstate-font {
  font-family: "Interstate", sans-serif;
}
.star4000-font {
  font-family: "Star4000", sans-serif;
}
.mist-font {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
  text-shadow: 3px 3px 0px #00000025;
}
footer {
  background-color: #00000050;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-family: Frutiger, sans-serif;
  font-size: 1rem;
  z-index: 2;
  position: relative;

  animation: slideUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
  backdrop-filter: blur(4px);
}
footer span {
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: bold;
  text-shadow: 3px 3px 0px #00000025;
}
footer a {
  color: #aec7d8;
  text-decoration: none;
  font-weight: bold;
}
footer a:hover {
  text-decoration: underline;
}
