.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #0f3460, #223a6e);
  color: #e6e6fa;
  z-index: 1000;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-brand .brand-link {
  color: #e6e6fa;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-brand .brand-link:hover {
  color: #ffd700;
}

.navbar-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: #223a6e;
  padding: 15px 0;
  border-top: 1px solid #0f3460;
}

.navbar-menu.active {
  display: flex;
}

.navbar-item {
  padding: 12px 30px;
}

.navbar-item a {
  color: #e6e6fa;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-item a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.navbar-toggle {
  display: block;
  background: none;
  border: none;
  color: #e6e6fa;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.navbar-toggle:hover {
  color: #ffd700;
}



.footer {
  background: #0f3460;
  color: #e6e6fa;
  padding: 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  margin-top: 20px;
}

.footer-content p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fffacd;
}