.logos {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  height: auto;
}

/* 마키나락스 로고를 더 크게 */
.logo-item:first-child img {
  width: 140px;
  height: auto;
}

/* 어텐션 로고 */
.logo-item:last-child img {
  width: 120px;
  height: auto;
}

.logo-divider {
  width: 1.5px;
  height: 20px;
  background-color: #fff;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  color: #fff;
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
  background: #000;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 12px;
  z-index: 1000;
}

.desktop-nav-container {
  display: flex;
}

.mobile-nav-container {
  display: none;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.register-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.register-btn:hover {
  transform: translateY(-1px);
}

/* 햄버거 메뉴 버튼 */
.hamburger-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  gap: 4px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}

.hamburger-btn span {
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* 햄버거 버튼이 활성화되었을 때 X 모양으로 변경 */
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* 모바일 메뉴 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  background: #000;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.mobile-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
}

/* 모바일 반응형 */
@media (max-width: 1024px) {
  .desktop-nav-container {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .mobile-nav-container {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}
