@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Roboto", sans-serif;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
}

.navbar-container {
  position: absolute;
  width: 100vw;
  top: 0;
  background-color: transparent;
}

.navbar-container .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  padding: 40px 80px;
}

.navbar-container .navbar .logo {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  color: #fff;
}

.navbar-container .navbar .logo img {
  margin-left: 4px;
  width: 12px;
  height: auto;
  margin-top: -10px;
}

.navbar-container .navbar .btn {
  width: fit-content;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  background-color: transparent;
  padding: 10px 12px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.modal-content {
  background: #fff;
  color: black;
  padding: 10px;
  height: 24rem;
  width: 24rem;
  text-align: center;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  color: black;
}

.logo-container img {
  margin-left: 2px;
  width: 12px;
  height: auto;
  margin-top: -12px;
}

.modal h2 {
  margin-top: 20px;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

#loginForm {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid grey;
}

button {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: black;
  color: #fff;
  cursor: pointer;
  width: 100%;
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: lightgrey;
}

.error-message {
  color: red;
  margin-top: 10px;
}

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.hero-section .video {
  position: absolute;
  width: 100vw;
  overflow: hidden;
  z-index: -1;
  height: 100%;
}

.hero-section .video::before {
  content: "";
  position: absolute;
  background: rgb(0 0 0 / 72%);
  border-radius: 5px;
  top: 0;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 100%;
}

.hero-section .video video {
  object-fit: cover;
  width: 100vw;
  height: 100%;
}

.hero-section .content {
  padding: 0 80px;
  margin-top: 112px;
}

.hero-section .content h2 {
  font-size: 55px;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  line-height: 60px;
}

.hero-section .content h2 span {
  margin-top: 25px;
  display: block;
  color: #d9d9d9;
}

.hero-section .content .btn {
  width: fit-content;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  background-color: transparent;
  padding: 15px 40px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 50px;
  display: block;
  text-decoration: none;
}

.about-section {
  padding: 100px 80px;
}

.about-section .title {
  font-size: 44px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-align: center;
}

.about-section p {
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-align: center;
  max-width: 1000px;
  display: block;
  margin: 0 auto 30px;
  line-height: 37px;
}

@media (max-width: 768px) {
  .navbar-container .navbar {
    padding: 30px 45px;
  }

  .navbar-container .navbar .logo {
    font-size: 24px;
  }

  .navbar-container .navbar .logo img {
    margin-bottom: -1;
    margin-left: 1px;
    width: 9px;
  }

  .navbar-container .navbar .btn {
    font-size: 9px;

  }

  .hero-section .content {
    padding: 0 45px;
    margin-top: 0;
  }

  .hero-section .content h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .hero-section .content h2 span {
    margin-top: 10px;
  }

  .hero-section .content .btn {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 40px;
  }

  .about-section {
    padding: 60px 45px;
  }

  .about-section .title {
    font-size: 30px;
    letter-spacing: 0;
  }

  .about-section p {
    max-width: 100%;
    font-size: 16px;
    line-height: 22px;
  }
}