/* Header Component Styles */

/* Header Styles */
.header {
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  transition: transform 0.3s ease, background 0.3s ease;
}

.header.hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

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

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: baseline;
  font-family: "Arial", sans-serif;
  flex-shrink: 0;
  cursor: pointer;
}

.logo-main {
  font-size: 26px;
  font-weight: 800;
  color: #2c3e50;
  letter-spacing: -0.5px;
}

.logo-accent {
  font-size: 24px;
  font-weight: 600;
  color: #4fc3f7;
  margin-left: 2px;
  text-decoration: none;
  position: relative;
}

.logo-text {
  font-size: 24px;
  font-weight: 300;
  color: #333;
}

.logo-box {
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 600;
}

/* 네비게이션 메뉴 */
.nav-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* 가격 링크 스타일 */
.pricing-link {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.pricing-link:hover {
  color: #4fc3f7;
  text-decoration: underline;
}

/* 모바일 메뉴 토글 버튼 */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-left: 0;
    z-index: 999;
  }

  .nav-menu.active {
    display: block;
  }

  .pricing-link {
    display: block;
    font-size: 16px;
    padding: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pricing-link {
    font-size: 14px;
    padding: 8px;
  }
}

/* 메뉴 시스템 제거됨 - 로고만 사용 */
