body, html {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  height: 100%;
  overflow-x: hidden;
}


.background {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../img/bck.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: brightness(0.95) blur(2px);
  z-index: -1;
}


.logo {
  max-width: 200px;
  height: auto;
}


.hero-section {
  height: 100vh;
}



.glassmorph {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  width: 90vw;
  max-width: 1200px;
  max-height: 100x;
  margin: 65px auto 0 auto;
  padding: 0 1em;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; 
  z-index: 2;
  overflow-x: auto;
}


.hide-on-mobile {
  display: block;
}

@media (max-width: 1000px) {
  .hide-on-mobile {
    display: none !important;
  }

  .glassmorph {
    justify-content: space-between;
    padding: 0.5em;
    max-height: 100x;
  }

  .navbar ul {
    margin-left: 0;
    display: flex;
    gap: 0.5em;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .navbar ul li {
    display: inline-block;
    white-space: nowrap;
  }

  .logo {
    max-width: 130px;
  }
   .set-to-mobile{
  font-size: 11px;
 }
   body {
    padding-top: 120px;
  }
}

/* hamburgur */
.navbar-toggler {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  border: none;
  padding: 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* center hamburgur */
@media (max-width: 991.98px) {
  .navbar-nav {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}


/* Extra box why not */
.glassmorph_box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

/* Navbar */
.navbar .nav-link {
  font-weight: bold;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #0092fb !important;
}

/* list */
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 2em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

/* menu stuff */
.navbar ul li {
  display: inline-block;
}

/* menu link */
.navbar ul li a {
  padding: 0.25em 1em;
  color: #090909;
  text-decoration: none;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .glassmorph {
    flex-direction: column;
    align-items: center;
    padding: 1em;
    gap: 1em;
  }

  .navbar ul {
    margin-left: 0;
    justify-content: center;
  }

  .navbar ul li {
    display: block;
    margin: 0.5em 0;
  }

  .logo {
    max-width: 150px;
  }

  .hero-section {
    height: auto;
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
