/* General Styles */
body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }


.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  object-position: center center;
}




.nav-link {
  color: #ffffff !important;
  text-align: center;
}

.navbar-toggler {
  border-color: white;
  z-index: 2;  /* Ensure the toggler appears above the brand */
}

/* Navbar Responsiveness for smaller screens */
@media (max-width: 768px) {
  .navbar-collapse {
    justify-content: center;  /* Center the menu items */
    display: flex;
    flex-direction: column;  /* Stack menu items vertically */
    align-items: center;
    width: 100%;
  }

  /* Align brand and menu in the same row */
  .navbar-brand {
    font-size: 2.5rem;
    margin-right: 10px;  /* Add space between brand and menu */
  }

  /* Navbar items should be aligned vertically */
  .navbar-nav {
    display: flex;
    flex-direction: column;  /* Stack items vertically */
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .nav-item {
    margin: 10px 0;  /* Add vertical spacing between items */
  }
}




/* Button Container */
.button-container {
  margin-top: 100px;
  text-align: center;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Ensures buttons wrap to the next line on small screens */
}

.button-container .btn {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  background: transparent;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  align-items: center;
}

.button-container .btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #E50914;
  border-color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

h1, h2 {
  text-align: center;
  margin-top: 20px;
}

.section {
  min-height: 100vh; /* Ensures full-page height for each section */
  padding: 20px;
}


/* Mobile Navbar Adjustments */
@media (max-width: 768px) {
  .navbar-collapse {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }


  .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .nav-item {
    margin: 10px 0; /* Add vertical spacing between items */
  }
}

   