@font-face{
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/BebasNeue-Regular.ttf');
}


html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100vh;
  width: 100vw;
  background-color: black;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-color: none;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.15em;
}

body::-webkit-scrollbar {
  display: none;
}

.container {
  height: 100%;
  background-color: black;
  animation: fadeIn 3s forwards; /* Apply the animation, set its duration to 3 seconds, and keep the final state after the animation ends */
}

nav {
  height: 5rem;
  width: 100%;
  background-color: black;
  position: absolute;
  z-index: 5;
  top: 0;
}

.nav-wrapper {
  height: 100%;
  width: 100%;
}

.nav-list {
  color: white;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-link {
  height: 100%;
  min-width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 2em;
}

.nav-link a {
  height: 100%;
  width: 100%;
}

.nav-link:hover {
  background-color: orange;
}

.nav-list a {
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper {
  position: absolute;
  top: -30px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.logo {
  max-width: 250px;
  pointer-events: initial;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.video-wrapper video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.overlay-content {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 80px;
  left: 0;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  z-index: 2;
  padding: 12%;
  font-size: 30px;
  height: calc(100vh - 80px);
  text-align: center;
  overflow: auto;
  box-sizing: border-box;
  text-shadow: 1px 4px black;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
}

.content-title {
  color: red;
  font-size: 80px;
  font-weight: 700;
}

.now-open {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
}

.games-list-section {
  width: 100%;
  overflow: hidden;
  margin: 100px 0;
}

.section-header {
  height: 6.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 50px;
  text-align: center;
}

.games-list-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.list-header {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  text-decoration: underline;
  padding: 15px;
}

.games-list {
  color: white;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.games-list > li {
  font-size: 22px;
  padding: 15px;
}

.contact-container {
  width: 100%;
}

.contact-wrapper {
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: brown;
  padding: 20px 0;
}

.contact-wrapper > iframe {
    max-width: 90%;
    /* width: 600px; */
}

.contact-title {
  font-size: 35px;
  padding: 10px;
  text-align: center;
}

.contact-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  margin: 25px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 5px;
}

.contact-info span {
  font-size: 20px;
  padding: 5px;
}

.list-title {
  font-size: 20px;
}

.list-wrapper {
  font-size: 20px;
  padding: 5px;
  display: flex;
  flex-direction: column;
}

.hours-list {
  color: white;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-title {
  font-size: 20px;
}


.icon-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin: 10px;
}

.icon img {
  height: 42px;
  width: 42px;
  cursor: pointer;
}

.email-link a {
  color: white;
  text-decoration: none;
}

footer {
  width: 100%;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.pinball {
  color: #70ecfa;
}

.arcade {
  color: #fc7f71;
}

.current {
  margin-top: 150px;
}

.smaller-text {
  font-size: 14px;
}

/* ANIMATIONS */

/* Define the keyframes for the fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0; /* The element is initially fully transparent */
    background-color: black;
  }
  100% {
    opacity: 1; /* The element becomes fully visible */
    background-color: transparent; /* The background color fades to transparent */
  }
}

@media (max-width: 650px) {

    .logo {
        max-width: 200px;
    }

    .nav-link {
        display: none;
    }

    .content-title {
        font-size: 40px;
    }

    .now-open {
      font-size: 30px;
    }

    .content-wrapper {
        font-size: 25px;
    }

    .section-header {
        font-size: 40px;
    }

    .list-header {
        font-size: 30px;
    }

    .contact-title {
        font-size: 30px;
    }
}