/* =========================
   Header
========================= */

#header {
  width: 100%;
  height: 100px;
  margin: 0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
  box-sizing: border-box;
}

.header-logo {
  width: 22vw;
  max-width: 320px;
  height: 100%;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-nav {
  margin-right: 5vw;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1rem;
  list-style: none;
}

.header-nav a {
  text-decoration: none;
  font-size: 1.25rem;
}

.nav-item a {
  color: inherit;
}

.nav-item:hover a,
.nav-item.active a {
  color: #e50914;
}

.nav-lang a {
  color: #4c86ff;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
}

/* Tablet (≤1024px) */

@media screen and (max-width: 1024px) {
  #header {
    height: 80px;
  }

  .header-inner {
    padding: 0 3vw;
  }

  .header-logo {
    width: 26vw;
    max-width: 260px;
  }

  .nav-item a,
  .nav-lang a {
    font-size: 1.1rem;
  }
}

/* Mobile: Banner (≤768px) */

@media screen and (max-width: 768px) {
  #header {
    height: 64px;
  }

  .header-inner {
    height: 100%;
    padding: 0 4vw;
  }

  .header-logo {
    width: 40vw;
    max-width: 180px;
    height: 100%;
  }

  .nav-item a,
  .nav-lang a {
    font-size: 0.9rem;
  }
}
