/* 기본 설정 */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

/* 헤더 */
header {
  background: #222;
  color: white;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* 헤더 안 내용 */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 로고 */
.logo a {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
}

/* 네비게이션 */
nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

/* 네비게이션 상위 메뉴 */
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 10px;
  display: block;
}

/* 드롭다운 메뉴 */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 8px;
  z-index: 1000;
}

/* 드롭다운 메뉴 안 링크 */
.dropdown-content li a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* 드롭다운 메뉴 hover */
.dropdown-content li a:hover {
  background-color: transparent; /* 배경 투명 */
  color: #FF32A5; /* 글자 색만 변경 */
}

/* 마우스 오버시 드롭다운 보이기 */
.dropdown:hover .dropdown-content {
  display: block;
}

/* 스페이서 (헤더 높이 만큼) */
.spacer {
  height: 80px;
}

/* 섹션 */
section {
  padding: 100px 20px;
  min-height: 100vh;
  text-align: center;
}

/* 푸터 */
footer {
  background: #eee;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}
