@import url("https://fonts.googleapis.com/css2?family=Agbalumo&display=swap");

/* Global Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	background-color: #ffebd6;
	color: #5a3e23;
	line-height: 1.6;
}

/* Header & Navigation */
header {
	padding: 6px 40px;
	border-bottom: 2px solid rgba(90, 62, 35, 0.1);
	background-color: #fcf4eb;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-links {
	display: flex;
	gap: 30px;
}

.nav-item {
	text-decoration: none;
	color: #5a3e23;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-item:hover {
	color: #8b5a2b;
}

.logo h1 {
	/* font-family: "Playfair Display", serif;
	font-family: Juno Condensed; */
	font-family: "Agbalumo", system-ui;
	font-weight: 400;
	color: #5a3e23;
}

/* .contact-button{
  font-size: 8px;
} */
.btn-outline {
	display: inline-block;
	padding: 8px 18px;
	border: 1px solid #5a3e23;
	border-radius: 100px;
	text-decoration: none;
	color: #5a3e23;
	font-weight: 500;
	transition: all 0.3s;
}

.btn-outline:hover {
	background-color: #5a3e23;
	color: #fff8ee;
}

/* Main Content */
main {
	padding: 40px;
}

.contact-container {
	display: flex;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Form Section */
.contact-form {
	flex: 1;
	padding: 20px 0;
}

.form-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.star-icon {
	font-size: 24px;
	color: #8b5a2b;
}

.form-header h2 {
	/* font-family: "Playfair Display", serif; */
	font-family: "Agbalumo", serif;
	font-weight: 400;
	/* font-size: 30px; */
	font-size: 2.5rem;
	color: #5a3e23;
}

.form-subtitle {
	color: #8b5a2b;
	margin-bottom: 10px;
	/* font-family: Audace Std Italic; */
	/* font-size: 18px; */
	font-family: "Poppins", serif;
	font-size: 16px;
	font-style: italic;
}

.form-text {
	color: #8b5a2b;
	margin-bottom: 25px;
	/* font-family: Audace Std Italic; */
	/* font-size: 18px; */
	font-family: "Poppins", serif;
	font-size: 16px;
	font-style: italic;
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	flex: 1;
}

/* .btn-submit{
  border-radius: 100px;
} */

.full-width {
	width: 100%;
}

label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	color: #5a3e23;
}

input,
select,
textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid rgba(90, 62, 35, 0.2);
	border-radius: 5px;
	background-color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	color: #5a3e23;
}

input::placeholder,
textarea::placeholder {
	color: #bba68c;
}

select {
	appearance: none;
	/* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A3E23' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); */
	background-repeat: no-repeat;
	background-position: right 15px center;
	padding-right: 40px;
}

textarea {
	height: 120px;
	resize: vertical;
}

.btn-submit {
	display: block;
	width: 100%;
	padding: 15px;
	background-color: #5a3e23;
	color: #fff;
	border: none;
	border-radius: 25px;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-top: 20px;
}

.btn-submit:hover {
	background-color: #8b5a2b;
}

/* Contact Info Section */
.contact-info {
	flex: 1;
}

.pattern-bg {
	height: 100%;
	background-image: url("../imgs/azf_logo.jpg");
	background-size: cover;
	background-position: center center;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70%;
}

/* .logo-box {
  background-color: #000;
  color: #FFF;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
} */

.logo-box h2 {
	/* font-family: "Playfair Display", serif; */
	font-family: "Poppins", serif;
	font-size: 40px;
	line-height: 1;
	margin-bottom: 5px;
}

.logo-box p {
	font-size: 14px;
	letter-spacing: 3px;
}

.info-box {
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.info-item {
	flex: 1;
	text-align: center;
}

.info-item h3 {
	font-size: 14px;
	color: #5a3e23;
	margin-bottom: 5px;
}

.info-item p {
	font-size: 14px;
	color: #8b5a2b;
}

/* Responsive Design */
@media (max-width: 992px) {
	.contact-container {
		flex-direction: column;
	}

	.pattern-bg {
		height: 400px;
	}
}

@media (max-width: 768px) {
	header {
		padding: 15px 20px;
	}

	nav {
		flex-direction: column;
		gap: 15px;
	}

	.nav-links {
		width: 100%;
		justify-content: center;
	}

	.contact-button {
		/* margin-top: 10px; */
	}

	main {
		padding: 20px;
	}

	.form-row {
		flex-direction: column;
		gap: 15px;
	}
}

@media (max-width: 480px) {
	.nav-links {
		gap: 15px;
	}

	.form-header h2 {
		font-size: 24px;
	}

	.info-box {
		flex-direction: column;
		gap: 15px;
	}
}
