@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,100italic,300italic");

/* Reset and basic setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: "Roboto", Helvetica, sans-serif;
  color: white;
}

/* Video Background */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

hr {
    border: 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    margin: 3em 0;
  }

    hr.major {
      margin: 4em 0;
    }

/* Transparent Header */
header {
  position: absolute;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  text-align: right;
}

header a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

/* Hero Text */
.hero-text {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.hero-text h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 24px;
}

/* Footer */
footer {
  position: fixed;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

footer a {
  color: white;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}

footer a:hover {
  color: #ddd;
}

/* Optional: Font Awesome Icons Styles */
.fa, .fab, .fas {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free";
  font-style: normal;
  transition: color 0.3s;
}

.fa:hover {
  color: #ddd;
}

.menu-container {
  position: relative;
  display: inline-block;
}

#menuButton {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 18px;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  font-weight: bold;
  border-radius: 6px;
}

#menuButton:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  min-width: 160px;
  border-radius: 6px;
  z-index: 3;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.show {
  display: block;
}

/*mobile stuff*/
@media (max-width: 768px) {
  header {
    text-align: center;
    padding: 15px;
  }
  
  #bgVideo {
    object-fit: contain;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    transform: none;
    background-color: black;
  }

  .menu-container {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  #menuButton {
    width: 90%;
    font-size: 16px;
    padding: 12px;
  }

  .dropdown-content {
    position: static;
    display: none;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    margin-top: 5px;
  }

  .dropdown-content a {
    font-size: 16px;
    padding: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .show {
    display: block;
  }
}

@media (max-width: 480px) {
  #menuButton {
    font-size: 14px;
    padding: 10px;
  }

  .dropdown-content a {
    font-size: 14px;
    padding: 12px;
  }
}