@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

/* navbar */
.navbar {
  background: transparent !important;
  position: absolute !important;
  width: 100%;
  z-index: 2 !important;
}

.navbar-brand img {
  height: 30px; 
  width: auto;
  margin-right: 10px;
}

.navbar-brand span {
  font-size: 20px;
  font-weight: 600;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  transition: background-color 0.3s ease;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  z-index: 9999;

}

.navbar-toggler-icon {

}

.navbar-collapse {
  z-index: 100;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus .navbar-toggler-icon,
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,255,0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar-collapse {
  flex-grow: 0;
  flex-basis: 100%;
}

.navbar-nav {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.nav-item {
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0;
}

/* carousel */
.carousel-item {
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  text-align: center;
}

.carousel-caption h1 {
  font-family: 'Bebas Neue', cursive !important;
  font-size: 100px;
  font-weight: 600;
  letter-spacing: 5px;
}

.carousel-caption h2 {
  font-family: 'Bebas Neue', cursive !important;
  font-size: 50px;
  letter-spacing: 4px;
}

.carousel .btn {
  display: inline-block;
  border-radius: 20px;
  cursor: pointer;
  background: rgba(50, 55, 54, 0.447);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    justify-content: center;
    align-items: center;

  }

  .navbar-collapse.collapse.show {
    display: flex !important;
    z-index:1 !important;
  }

  span .navbar-toggler-icon {
    background-color: aliceblue !important;
  }

}

@media (max-width: 576px) {
  h1.text-white {
    font-size: 60px;
    letter-spacing: 0px;
  }

  h2.text-white {
    font-size: 40px;
  }

  p.text-white {
    font-size: 13px;
  }
}
