.nav-link:hover {
  color: #2c6f1a !important;
}

* {
  font-family: "Century Gothic", sans-serif;
}

.navbar-brand svg {
  width: 100%;
  height: auto;
  max-width: 300px;
}

@media (max-width: 768px) {
  .navbar-brand svg {
    max-width: 200px;
  }
}

.font-segoe-ui {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

.navbar {
  position: relative;
  background-image: url("../img/header.JPG");
  /* Replace with your background image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: overlay;
  /* Blend the background image with the overlay color */
  color: #000;
  /* Text color */
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  /* White overlay with 50% opacity */
  z-index: 1;
}

.navbar .container {
  position: relative;
  z-index: 2;
}

.navbar-light .navbar-nav .nav-link {
  color: #000;
}
