html,
body {
  height: 100%;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none;
    color: #5f2167;
}

a:hover {
    text-decoration: none;
}

button,
button:active,
button:focus {
  outline: none;
}

.bg-grey50 {
    background-color: #adb5bd;
}

.bg-grey30 {
    background-color: #ececec;
}


.hero-wrapper {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 75vh;
}

.hero-wrapper-standard {
  position: relative;
  height: 33vh;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Overlay content */
.top-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0px;
}

.logo {
    width: 250px;
    margin-bottom: 25px;
    padding-top: 0px;
}

.custom-navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 10px 25px;
}

.navbar-nav .nav-link {
  color: black !important;
  font-weight: 500;
  margin: 0 10px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #5f2167 !important;
}

/* Optional centered caption */
.carousel-caption {
  bottom: 35%;
}

.carousel-caption h1 {
  font-size: 4rem;
  font-weight: 700;
}

.carousel-caption p {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .logo {
    width: 200px;
  }

  .carousel-caption h1 {
    font-size: 2.5rem;
  }

  .custom-navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 0px;
  width: 100%;
  }
}
