
/* NAVBAR STYLES */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #333;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  white-space: nowrap;
}

body {
  padding-top: 70px;   /* Space for header */
  padding-bottom: 80px; /* Space for footer */
}

.navbar {
  background-color: #f1f1f1;
  padding: 0.5rem 1rem;
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: flex-start; /* changed from space-between */
  align-items: center;
  gap: 1rem;
  max-width: 100%;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  margin-right: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-button {
  background: none;
  border: none;
  color: #112656;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-button:hover,
.nav-dropdown:hover .nav-button {
  background-color: #FD9803;
  color: #112656;
  border-radius: 4px;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  color: #112656;
  min-width: 240px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.nav-dropdown-content a {
  color: #112656;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
}

.nav-dropdown-content a:hover {
  background-color: #f1f1f1;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}
