/* Header */
.header {
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 8px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
}

.logo-icon {
  background: url("../images/common/logo.svg") no-repeat center/contain;
  width: 64px;
  height: 64px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: opacity 0.3s, transform 0.3s;
}

.nav a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  /* Header max-width: 768px */
  .header {
    padding: 12px 0;
  }

  .header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav {
    display: none;
  }

  .logo-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 0.875rem;
    line-height: 1.1;
  }

  .logo-icon {
    width: 3rem;
    height: 3rem;
  }
}
