/* ======================= Contact_with_me CSS ======================= */

/* 🔖 섹션 제목 */
section .title {
	margin-bottom: 2rem;
}

	section .title h4 {
		font-size: 1.75rem;
		color: #ed4848;
		position: relative;
	}

	section .title h2 {
		font-size: 3.5rem;
	}

/* 📦 Contact 섹션 하단 여백 제거 */
section.contact {
	padding-bottom: 0;
}

	section.contact .contact-me::after {
		content: '';
		display: block;
		clear: both;
	}

/* 📐 메인 flex 컨테이너 */
.contact-me {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center; /* ✅ 양쪽 정렬 자연스럽게 */
	align-items: flex-start;
}

	/* 🎯 좌우 영역 공통 */
	.contact-me .left,
	.contact-me .right {
		flex: 1 1 100%;
		width: 100%;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
	}

/* 🖥 데스크탑에서 좌우 나누기 */
@media (min-width: 768px) {
	.contact-me .left,
	.contact-me .right {
		flex: 1 1 0;
		width: 48%;
		max-width: 550px;
	}
}

/* ℹ️ 정보 박스 */
.contact-me .info-box {
	display: flex;
	align-items: center;
	padding: 1rem;
	margin-bottom: 1rem;
	border: 1px solid #ccc;
	border-radius: 10px;
	background: #fff;
}

	.contact-me .info-box i {
		font-size: 2rem;
		margin-right: 15px;
	}

	.contact-me .info-box .info-text {
		display: flex;
		flex-direction: column;
	}

		.contact-me .info-box .info-text strong {
			font-size: 1rem;
		}

		.contact-me .info-box .info-text span {
			font-size: 0.9rem;
			color: #555;
		}

/* 🗺 지도 */
.contact-me .map-container {
	border: 1px solid #ccc;
	border-radius: 10px;
	overflow: hidden;
	min-height: 200px;
	background: #fff;
	width: 100%;
	box-sizing: border-box;
}

/* 📬 폼 박스 */
.form-container {
	border: 1px solid #ccc;
	padding: 1rem;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
	width: 100%;
}

/* 🔤 입력 폼 */
.contact-me form .form-group {
	margin-bottom: 0.8rem;
}

	.contact-me form .form-group label {
		display: block;
		font-weight: bold;
		margin-bottom: 0.3rem;
	}

	.contact-me form .form-group input,
	.contact-me form .form-group textarea {
		width: 100%;
		padding: 0.625rem;
		border: 1px solid #ccc;
		border-radius: 10px;
		box-sizing: border-box;
		outline: none;
		transition: all 0.3s ease-in-out;
	}

		.contact-me form .form-group input:focus,
		.contact-me form .form-group textarea:focus {
			border: 1px solid #719ece;
			box-shadow: 0 0 8px #719ece;
		}

/* ✍️ 텍스트에어리어 */
.contact-me form textarea {
	height: 112px;
	resize: none;
}

/* 📩 전송 버튼 */
.contact-me form button {
	width: 100%;
	padding: 0.9rem;
	background-color: #ff6a6a;
	border: 1px solid #ff6a6a;
	color: white;
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease-in-out;
	box-sizing: border-box;
	margin-top: 0.8rem;
}

	.contact-me form button:hover {
		background-color: white;
		color: #ff6a6a;
		box-shadow: 0 0 10px #ff6a6a;
	}

/* 🗺 Daum Map 스타일 */
.root_daum_roughmap {
	width: 100%;
	height: 100%;
}
