/* General styling for the header */
.background {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo styling */
.logo img {
  max-width: 100%;
  height: auto;
}




/* Navigation styling */
nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  gap: 20px;
  font-weight: bolder;
  font-size: larger;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #003366;
  background: rgba(255, 255, 255, 0.2);
  /* transparent white overlay */
  padding: 6px 12px;
  border-radius: 4px;
  transition: 0.3s;
}

/* Menu icon for mobile */
.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: bolder;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 15px 0;
  }

  .menu a {
    padding: 10px;
    text-align: center;
  }

  .menu.show {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}
