.login-button-wrapper {
  margin-top: 1.5rem;
  text-align: left;
  gap: 2rem;
}

.login-button {
  background-color: #1480d0;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 0.4rem;
  text-decoration: none;
  display: inline-block;
  margin-left: 0;
  
  transition: background-color 0.3s ease;
}

.login-button-wrapper a:not(:last-child) {
  margin-right: 2rem;
}

.login-button:hover {
  background-color: #0f6cb4;
}

@media screen and (min-width: 769px) {
  .hamburger {
    position: absolute;
    top: 2rem;
    right: 2rem;
    left: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    filter: drop-shadow(2px 2px 8px #1c294b);
  }

  .hamburger div {
    background: #ffdd55;
    height: 5px;
    width: 100%;
    box-shadow: 2px 2px 8px #1c294b;
  }

  .hamburger:hover div {
    background-color: #85bb65;
  }

    .dropdown {
    position: absolute;
    top: 4.5rem;
    right: 2rem;
    left: auto;
    width: 240px;
    background: rgba(0, 0, 0, 0.95);
    padding: 1.25rem;
    display: none;
    z-index: 20;
    border-radius: 0.5rem;
  }

  .dropdown {
    display: none;
  }

  .dropdown.open {
    display: block;
  }

  .dropdown a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    padding: 0.6rem 0;
  }
}

/* Mobile Styles (768px and below) */
@media screen and (max-width: 768px) {
  .hamburger {
    position: absolute !important;
    top: 2rem !important;
    left: 2rem !important;
    right: auto !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 10;
    filter: drop-shadow(2px 2px 8px #1c294b);
  }

  .hamburger div {
    background: #fd5;
    height: 5px;
    width: 100%;
    box-shadow: 2px 2px 8px #1c294b;
  }

  .hamburger:hover div {
    background-color: #85bb65;
  }

  .dropdown {
    position: absolute;
    top: 5rem;
    left: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    display: none;
    z-index: 20;
    border-radius: 0.25rem;
  }

  .dropdown.open {
    display: block;
  }

  .dropdown a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
  .footer-nav {
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width:768px) {
  .site-header {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* spacing between logo and text */
  }

  .site-header img.site-icon {
    flex-shrink: 0;
  }

  .site-header span {
    font-size: 1.3rem !important; /* shrink the base text inside span */
    line-height: 1.2 !important;
  }

  .site-header .brand-name {
    font-size: 1.3rem !important; /* smaller brand name text for mobile */
    line-height: 1.2 !important;
  }
  .login-button-wrapper a:not(:last-child){ margin-right: .5rem; }
}

