.navbar-logo {
    width: 4rem;
    height: auto;
}

.intro-image {
    width: 40rem;
    height: auto;
}

.navbar .navbar-brand {
    font-family: Futura,sans-serif;
}

.navbar-nav .nav-link {
    font-size: 1.5em;
    font-weight: 400;
    letter-spacing: 2px;
  }
  
.navbar-nav .nav-link:hover {
    color: #ffffff;
    text-decoration: 2px solid #ffffff;
  }

  .intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover; /* This will ensure the image covers the entire container */
  }
  
  .intro-image-container {
    position: relative;
    overflow: hidden;
  }
  
  .intro-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
  }
  
  .intro-image-container:hover::before {
    background-color: yellow;
  }

  .blue-divider {
    width: 100%;
    height: 200px; /* Adjust this value to change the height of the divider */
    background-color: #007bff; /* Blue color */
    margin-top: 20px; /* Add space above the divider */
    margin-bottom: 20px; /* Add space below the divider */
  }
  
  /* Optional: Add a subtle gradient for depth */
  .blue-divider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,123,255,0.5), rgba(0,123,255,0));
  }
