@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

.hero-section {
  background-image: url('../assets/bg-aios.jpg'); /* ose vendos direkt URL absolute */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  max-height: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* overlay black 50% */
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.nav-link {
    color: #424242;
    font-weight: 600;
}

.nav-link.active {
    color:#0D6EFD;
}

.nav-item {
    margin-left: 1.5rem;
}