/* body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
} */

/* video background */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}
.video-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
}
.video-overlay h1 {
  color: white;
  font-family: "Arial", sans-serif;
  font-size: 95px;
  margin-bottom: 50px;
}
.video-overlay a {
  font-size: 23px;
  /* color: white; */
  text-decoration: none;
  /* border: 2px solid white; */
  padding: 15px 25px;
  border-radius: 50px;
  transition: 0.3s ease;
}

.video-overlay a:hover {
  /* background-color: white; */
  color: black;
  transition: 0.3s ease;
}
.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  object-fit: cover;
}



/* Event Poster Image + Button */
.video-overlay img {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}
.video-overlay img:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.3s ease;
}

/* off-screen-menu */
.off-screen-menu {
  background-color: rgb(0, 0, 0);
  height: 100vh;
  width: 100%;
  max-width: 450px;
  position: fixed;
  top: 0;
  right: -450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3rem;
  transition: 0.3s ease;
}
.off-screen-menu.active {
  right: 0;
}
.off-screen-menu a {
  color: white;
  text-decoration: none;
  margin: 20px 0;
}

/* hamburger */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
nav {
  padding: 1rem;
  display: flex;
  /* background-color: rgba(0, 0, 0, 0.239); */
}
nav a {
  text-decoration: none;
}
nav h1 {
  color: white;
  font-family: "Arial", sans-serif;
  font-size: 50px;
  margin: 0;
  text-align: right;
}
nav h3 {
  color: white;
  font-family: "Arial", sans-serif;
  font-size: 15px;
  margin: 15;
  text-align: left;
}
.ham-menu {
  height: 50px;
  width: 50px;
  margin-left: auto;
  position: relative;
}
.ham-menu:hover {
  cursor: pointer;
}
.ham-menu span {
  background-color: white;
  position: absolute;
  height: 5px;
  width: 100%;
  border-radius: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}
.ham-menu span:nth-child(1) {
  top: 25%;
}
.ham-menu span:nth-child(2) {
  top: 50%;
}
.ham-menu span:nth-child(3) {
  top: 75%;
}
.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
  opacity: 0;
}
.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

footer {
  text-align: center;
  padding: 10px;
  width: 100%;
  z-index: 20;
}
footer img {
  height: 80px;
  width: auto;
}
.copyright {
  margin-top: 10px;
  font-size: 14px;
  color: white;
}
.logo {
  height: 80px;
  width: auto;
  scale: 1.30;
}
audio {
  display: none;
}

/* Enter screen */
#enter-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
#enter-btn {
  padding: 16px 40px;
  font-size: 18px;
  background: transparent;
  color: white;
  border: 1px solid white;
  cursor: pointer;
  letter-spacing: 4px;
  font-family: "Arial", sans-serif;
}
#enter-btn:hover {
  background: white;
  color: black;
  transition: 0.3s ease;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Video overlay adjustments */
  .video-overlay h1 {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .video-overlay a {
    font-size: 16px;
    padding: 12px 20px;
  }

  /* Event poster image */
  .video-overlay img {
    width: 200px;
    margin-bottom: 15px;
  }

  /* Navigation adjustments */
  nav {
    padding: 0.75rem;
  }

  nav h1 {
    font-size: 32px;
  }

  nav h3 {
    font-size: 12px;
    margin: 10px;
  }

  /* Hamburger menu adjustments */
  .ham-menu {
    height: 40px;
    width: 40px;
  }

  .ham-menu span {
    height: 4px;
  }

  /* Off-screen menu adjustments */
  .off-screen-menu {
    max-width: 100%;
    right: -100%;
    font-size: 2rem;
  }

  .off-screen-menu a {
    margin: 15px 0;
  }

  /* Footer adjustments */
  footer {
    padding: 8px;
  }

  footer img {
    height: 60px;
  }

  .copyright {
    font-size: 12px;
  }

  .logo {
    height: 60px;
    scale: 1.1;
  }

  /* Enter button adjustments */
  #enter-btn {
    padding: 12px 30px;
    font-size: 16px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .video-overlay h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .video-overlay a {
    font-size: 14px;
    padding: 10px 18px;
  }

  /* Event poster image for small screens */
  .video-overlay img {
    width: 250px;
    margin-bottom: 12px;
  }

  /* Navigation for extra small */
  nav {
    padding: 0.5rem;
  }

  nav h1 {
    font-size: 30px;
  }

  nav h3 {
    font-size: 11px;
    margin: 8px;
  }

  /* Hamburger menu for extra small */
  .ham-menu {
    height: 35px;
    width: 35px;
  }

  .ham-menu span {
    height: 3px;
  }

  /* Off-screen menu full width on small */
  .off-screen-menu {
    max-width: 100%;
    font-size: 1.5rem;
  }

  .off-screen-menu a {
    margin: 12px 0;
  }

  /* Footer for small screens */
  footer img {
    height: 50px;
  }

  .copyright {
    font-size: 11px;
    margin-top: 8px;
  }

  .logo {
    height: 50px;
    scale: 1;
  }

  /* Enter button for small screens */
  #enter-btn {
    padding: 10px 25px;
    font-size: 14px;
    letter-spacing: 1px;
  }
}