* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #e6f4fb;
  color: rgb(19, 18, 18);
}

header {
  background: linear-gradient(45deg, #051adb, #1d1c4b);
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 12px rgba(123, 106, 218, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:visited,
.nav-links a:focus,
.nav-links a:active {
  color: white;
  background: none;
}

.nav-links a:hover {
  color: rgb(34, 135, 190);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background-color: #4277d6;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(2, 72, 179, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    font-size: 1.2em;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: white;
    background: none;
  }

  .nav-links a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #29c4e6;
  }

  .nav-links a:visited,
  .nav-links a:focus,
  .nav-links a:active {
    color: white;
    background: none;
  }
}
