/* --- STYLE CHUNG ĐỂ ĐỒNG BỘ VỚI HOMEPAGE --- */
body {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(to bottom, #fff7f8, #ffffff);
	color: #333;
	scroll-behavior: smooth;
	padding-top: 60px;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	height: 60px;
}

.nav-logo h1 {
	font-family: 'Great Vibes', cursive;
	font-size: 28px;
	color: #e77c8e;
	margin: 0;
}

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

.nav-links a {
	text-decoration: none;
	color: #555;
	font-weight: 600;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #e77c8e;
}

.menu-toggle {
	display: none;
}

.section {
	max-width: 900px;
	margin: 60px auto;
	padding: 0 20px;
	text-align: center;
}

.section h2 {
	font-family: 'Great Vibes', cursive;
	color: #e77c8e;
	font-size: 36px;
	margin-bottom: 30px;
}

.btn-primary {
	display: inline-block;
	background-color: #e77c8e;
	color: white;
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s;
	margin-top: 20px;
	white-space: nowrap;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background-color: #d35c6e;
}

/* --- CONTACT VÀ FORM LAYOUT --- */
.contact-container {
	display: flex;
	flex-wrap: wrap;
	text-align: left;
	gap: 40px;
	margin-top: 40px;
}

.contact-info {
	flex: 1;
	min-width: 300px;
	padding: 20px;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form {
	flex: 2;
	min-width: 300px;
	padding: 30px;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
	color: #e77c8e;
	border-bottom: 2px solid #f9e3e6;
	padding-bottom: 10px;
	margin-top: 0;
}

.contact-item {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	color: #555;
}

.contact-item i {
	color: #e77c8e;
	font-size: 20px;
	margin-right: 15px;
	width: 25px;
	text-align: center;
}

.social-icons a {
	font-size: 24px;
	margin-right: 20px;
	color: #e77c8e;
	transition: color 0.3s;
}

.social-icons a:hover {
	color: #d35c6e;
}

/* Form Styles */
.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #e77c8e;
	outline: none;
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-notice {
	background-color: #f9e3e6;
	color: #e77c8e;
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 30px;
	font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
	.contact-container {
		flex-direction: column;
	}

	/* .contact-info,
	.contact-form {
		min-width: 100%;
	}*/

	nav .nav-links {
		display: none;
	}
}

/* Footer Styles (Same as homepage, for consistency) */
footer {
	background: #f7f7f7;
	padding: 20px;
	text-align: center;
	border-top: 1px solid #eee;
	color: #555;
	font-size: 14px;
}

.copyright {
	font-size: 12px;
	color: #888;
}