/* HEADER CONTAINER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.2rem;
  height: 64px; /* Match footer height */
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 10;
}

/* LOGO SECTION */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ENLARGED LOGO IMAGE */
.site-logo {
  height: 100%;
  width: auto;
  max-height: 64px; /* ensure it doesn’t overflow */
  object-fit: contain;
}


/* BRAND TITLE */
.logo-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* TAGLINE UNDER TITLE */
.tagline {
  font-size: 0.8rem;
  color: #f0f8ff;
  margin: 0;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/* NAVIGATION */
.nav-list {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav-list li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    height: auto;
    padding: 0.5rem;
    align-items: flex-start;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }
}
