@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* 모바일 375/667 비율 전체화면 섹션 */
@media (max-width: 768px) {
	.mobile_full_section {
		height: auto !important;
		min-height: unset !important;
		aspect-ratio: 375 / 667;
		position: relative;
		overflow: hidden;
	}
}

/* 메인 페이지 컨테이너 */
.main_container {
	width: 100%;
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 상단 히어로 섹션 */
.hero_section {
	width: 100%;
	height: 579px;
	position: relative;
	overflow: hidden;
}

.hero_bg {
	/* position: absolute; */
	/* top: 50%; */
	/* left: 50%;
	transform: translate(-50%, -50%); */
	width: 100%;
	height: 100%;
	/* min-height: 234.49%; */
	object-fit: cover;
	object-position: bottom;
}

/* 메인 콘텐츠 섹션 */
.main_content_section {
	width: 100%;
	background-color: rgba(138, 123, 109, 0.7);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 72px;
	padding: 72px 0;
}

.content_inner {
	width: 100%;
	max-width: 1920px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 텍스트 콘텐츠 */
.text_content {
	width: 540px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	text-align: center;
}

.main_title {
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	font-size: 42px;
	color: white;
	line-height: 1.2;
	margin: 0;
}

.sub_title {
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 500;
	font-size: 17.5px;
	color: #d5d5d5;
	line-height: 1.5;
	margin: 0;
}

/* 브랜드 카드 영역 */
.brand_cards {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
	justify-content: center;
	/* max-width: 1400px; */
	max-width: 1040px;
	width: 100%;
}

.brand_card {
	width: calc(50% - 20px);
	border: 1px solid #8a7b6d;
	border-radius: 9px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	/* gap: 18px; */
	background-color: transparent;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
}

.brand_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.brand_card_image {
	width: 100%;
	/* aspect-ratio: 382 / 214; */
	aspect-ratio: 403 / 262;
	/* aspect-ratio: 1 / 0.75; */
	overflow: hidden;
	position: relative;
}

.brand_card_image img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	/* object-fit: cover; */
	/* position: absolute;
	top: -78.5%;
	left: 0; */
}

.brand_card_title {
padding: 13px 9px;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: white;
	margin: 0;
	text-align: center;
}

.brand_card_title .en {
	font-weight: 300;
}

/* 하단 회원가입 섹션 */
.signup_section {
	width: 100%;
	background-color: #8a7b6d;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 36px;
	padding: 36px 0;
}

.signup_content {
	width: 419.143px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.signup_text {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	text-align: center;
}

.signup_title {
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: white;
	margin: 0;
	line-height: 1.3;
}

.signup_desc {
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 350;
	font-size: 14px;
	color: #d5d5d5;
	margin: 0;
	line-height: 1.5;
}

.signup_button {
	background-color: white;
	border: none;
	border-radius: 9px;
	padding: 18px 14px;
	width: 120px;
	cursor: pointer;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: black;
	text-align: center;
	line-height: 1.5;
	transition: opacity 0.2s;
}

.signup_button:hover {
	opacity: 0.9;
}

/* 하단 링크 */
.footer_links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer_link {
	font-family: 'Noto Sans', 'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 12px;
	color: #4e4e4e;
	text-decoration: none;
	line-height: 1.5;
}

.footer_divider {
	width: 1px;
	height: 10px;
	background-color: #4e4e4e;
}

/* ========================================
   반응형 미디어 쿼리
======================================== */

/* 태블릿 (1024px 이하) */
@media (max-width: 1024px) {
	.hero_section {
		height: 400px;
	}

	.main_content_section {
		gap: 48px;
		padding: 48px 20px;
	}

	.text_content {
		max-width: 90%;
		width: 100%;
	}

	.main_title {
		font-size: 32px;
	}

	.sub_title {
		font-size: 16px;
	}

	.brand_cards {
		gap: 30px;
		flex-wrap: wrap;
		justify-content: center;
		padding: 0 20px;
	}

	.brand_card {
		width: calc((100% - 30px) / 2);
		max-width: 100%;
	}

	.signup_section {
		padding: 36px 20px;
	}

	.signup_content {
		width: 100%;
		max-width: 420px;
		padding: 0 20px;
	}
}

/* 모바일 (768px 이하) */
@media (max-width: 768px) {

	.brand_card {
	width: 100%;
}


	.hero_section {
		height: 300px;
	}

	.main_content_section {
		gap: 36px;
		padding: 36px 20px;
	}

	.text_content {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
	}

	.main_title {
		font-size: 24px;
		line-height: 1.4;
	}

	.sub_title {
		font-size: 14px;
	}


	.brand_cards {
		gap: 20px;
	}

	/* .brand_card {
		width: calc((100% - 20px) / 2);
		max-width: 100%;
	} */

	.signup_section {
		gap: 24px;
		padding: 24px 20px;
	}

	.signup_content {
		padding: 0;
	}

	.signup_title {
		font-size: 20px;
	}

	.signup_desc {
		font-size: 13px;
	}

	.signup_button {
		width: 140px;
		padding: 12px 16px;
		font-size: 13px;
	}

	.footer_links {
		gap: 8px;
	}

	.footer_link {
		font-size: 11px;
	}
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 480px) {
	.hero_section {
		height: 250px;
	}

	.main_content_section {
		gap: 24px;
		padding: 24px 16px;
	}

	.text_content {
		padding: 0 16px;
	}

	.main_title {
		font-size: 20px;
	}

	.sub_title {
		font-size: 13px;
	}

	.brand_cards {
		gap: 12px;
	}

	/* .brand_card {
		width: calc((100% - 12px) / 2);
		max-width: 100%;
	} */

	.signup_section {
		padding: 20px 16px;
	}

	.signup_title {
		font-size: 18px;
	}

	.signup_desc {
		font-size: 12px;
	}
}

/* ========================================
   푸터
======================================== */
.site_footer {
	background-color: #1a1a1a;
	padding: 40px 20px;
	text-align: center;
}

.site_footer_links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 16px;
}

.site_footer_link {
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 350;
	font-size: 14px;
	color: #aeaeae;
	text-decoration: none;
}

.site_footer_link:hover {
	color: #ffffff;
}

.site_footer_divider {
	color: #555;
	font-size: 12px;
}

.site_footer_info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px 12px;
	margin-bottom: 12px;
}

.site_footer_info_item {
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 350;
	font-size: 13px;
	color: #727272;
	white-space: nowrap;
}

.site_footer_info_bar {
	color: #444;
	font-size: 11px;
}

.site_footer_copy {
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 350;
	font-size: 13px;
	color: #555;
}

@media (max-width: 768px) {
	.site_footer {
		padding: 30px 16px;
	}

	.site_footer_info {
		flex-direction: column;
		gap: 6px;
	}

	.site_footer_info_bar {
		display: none;
	}
}
