
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background-color: black;
	font-family: 'Arial', sans-serif;
	min-width: 1024px;
}
/* 상단 로고 영역 */
.logo-section {
	height: 100px;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.logo {
	font-size: 32px;
	font-weight: bold;
	color: #333;
	letter-spacing: 2px;
}
/* 카테고리 메뉴 영역 */
.category-section {
	height: 50px;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.category-menu {
	display: flex;
	gap: 40px;
	max-width: 1024px;
	width: 100%;
	justify-content: center;
	padding: 0 20px;
}
.category-item {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	text-decoration: none;
	padding: 5px 10px;
	transition: color 0.3s ease;
	letter-spacing: 1px;
}
.category-item:hover {
	color: #666;
}
.category-item.active {
	color: #000;
	font-weight: 600;
}
/* 메인 이미지 영역 */
.main-image-section {
	width: 100%;
	height: calc(100vh - 150px);
	min-height: 400px;
	background-color: black;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}
.main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-width: 1024px;
}
/* 반응형 처리 */
@media screen and (min-width: 1024px) {
	.main-image {
		min-width: 100%;
	}
}
/* 1024px 이하에서는 중앙 정렬 유지 */
@media screen and (max-width: 1024px) {
	body {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.logo-section,
	.category-section {
		width: 1024px;
	}
	.main-image-section {
		width: 1024px;
	}
}