/* Custom Styles for smooth scrolling and specific effects */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
}

.nav-scrolled {
  background-color: #0d0140;
  color: white;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-transparent {
  background-color: transparent;
  color: #ffffff;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* Mobile menu transition */
#mobile-menu {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

#mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance !important;
}

.text-4xl {
  @media (max-width: 767px) {
    font-size: 2.1rem !important;
    line-height: 1.2 !important;

    & br {
      display: none;
    }
  }
}

.description {
  @media (max-width: 767px) {
    font-size: 16px !important;

    & br {
      display: none;
    }
  }
}