/* HEADER STYLES */
.header {
  position: fixed; /* stays on top when scrolling */
  top: 0;
  height: fit-content;
  border-radius: 12px;
  margin-top: 12px;
  margin-inline: 1vw;
  z-index: 2;
  width: 96vw;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1); /* semi-transparent */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); /* subtle shadow */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* GLOBAL LINK STYLE */
a {
  text-decoration: none;
}

/* LOGO STYLES */
.logo {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Wraps image and text */
.logo-link {
  display: flex;
  align-items: center;
}

/* Image styling to avoid distortion */
.logo-img {
  height: 45px;       /* adjust as needed */
  width: auto;
  object-fit: contain;
  margin-right: 0.5rem;
}

/* Logo text style */
.logo h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #0f172a;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  margin: 0;
}

/* CONTAINER STYLING */
.container {
  width: 100%;
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-around;
  font-size: 20px;
}

/* NAVIGATION */
.nav-items {
  display: flex;
  align-items: center;
}

/* HAMBURGER MENU ICON */
.menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* NAV LIST */
ul {
  display: flex;
  gap: 2rem;
}

li {
  list-style: none;
}

.nav-items ul li a {
  text-decoration: none;
  color: #1e1e2f;
  z-index: 3;
}

.nav-items ul li a:active {
  color: red;
}

.nav-items ul li a:hover {
  color: #00BFA6;
  font-size: 18px;
}

/* RESPONSIVE MENU */
@media screen and (max-width: 900px) {
  .nav-items ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #f5f5f5;
    padding: 20px;
    border-top: 1px solid #ddd;
  }

  .nav-items ul.active {
    display: flex;
  }

  .menu {
    display: block;
  }

  .nav-items {
    flex-wrap: wrap;
  }

  .log {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .logo h4 {
    font-size: 1.5rem;
  }

  .logo-img {
    height: 35px;
  }
}
