@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

@font-face {
	font-family: "PPEditorialOldUltraBold";
	src: url("Typefaces/PPEditorialOld-Ultrabold.otf")
}

@font-face {
	font-family: "PPEditorialNewItalic";
	src: url("Typefaces/PPEditorialNew-Italic.otf")
}

@font-face {
	font-family: "PPEditorialNewRegular";
	src: url("Typefaces/PPEditorialNew-Regular.otf")
}

body {
	margin: 0;
	padding: 0;
}

/* Header Styles */
.header {
	background-color: #F9F8F3;
	color: #412A1A;
	padding: 10px 140px 10px 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	width: 110px;
	height: auto;
}

.nav-links {
	display: flex;
	gap: 50px;
}

.nav-links a {
	color: #412A1A;
	text-decoration: none;
	padding: 10px;
	font-family: "PPEditorialNewItalic"
}

.nav-links a:hover {
	color: #9C5738;
}

.hamburger-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.line {
	width: 30px;
	height: 4px;
	background-color: #412A1A;
	margin: 5px;
}

/* Menu Styles */
.menu {
	background-color: #F9F8F3;
	color: #412A1A;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	padding-top: 90px;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 1000;
}

.menu ul {
	list-style-type: none;
	padding: 0;
}

.menu ul li {
	padding: 20px 0;
	margin: 60px auto;
	text-align: center;
}

.menu ul li a {
	color: #412A1A;
	text-decoration: none;
	font-size: 24px;
}

.menu.active {
	transform: translateX(0);
}

.close-btn {
	position: absolute;
	top: 20px;
	right: 25px;
	font-size: 54px;
	cursor: pointer;
	background-color: transparent;
	border: none;
	color: #412A1A;
}

@media screen and (max-width: 768px) {
	body {
		overflow-x: hidden;
	}

	.header {
		padding: 10px 20px;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 999;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: fixed;
		top: 50%;
		transform: translateY(-50%);
		background-color: #F9F8F3;
		width: 100%;
		height: 100vh;
		left: 0;
		padding: 20px 0;
		box-sizing: border-box;
		z-index: 998;
		overflow-y: auto;
	}

	.nav-links.show {
		display: flex;
	}

	.nav-links a {
		padding: 10px 0;
	}

	.hamburger-menu {
		display: flex;
		position: absolute;
		top: 25px;
		right: 60px;
	}
}

/* Page Styles */
.content {
	display: flex;
	background-color: #F0EADE;
}

.content .form-container h2 {
	color: #3B4234;
	font-family: "PPEditorialOldUltraBold";
	font-size: 45px;
	text-align: left;
	margin-left: 40px;
}

.image {
	flex: 1;
	background: url('Images/contactpic.jpg') center/cover no-repeat;
}

.form-container {
	flex: 1;
	padding: 20px;
	text-align: center;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 90%;
	padding: 10px;
	margin-bottom: 25px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
	background-color: #D4CFBA;
}

textarea {
	height: 150px;
	background-color: #D4CFBA;
	margin: 0px 0px 10px;
}

input[type="submit"] {
	display: inline-block;
	padding: 10px 40px;
	border: 2px solid #412A1A;
	border-radius: 8px;
	background-color: #F9F8F3;
	color: #412A1A;
	font-size: 12px;
	cursor: pointer;
	font-family: "Helvetica";
	transition: background-color 0.3s, color 0.3s;
	text-decoration: none;
	margin: 20px 0px;
}

input[type="submit"]:hover {
	background-color: #412A1A;
	color: #F9F8F3;
}

input::placeholder,
textarea::placeholder {
	font-family: 'Mulish';
	font-style: italic;
	color: #412A1A;
}

@media screen and (max-width: 768px) {
	.content {
		flex-direction: column;
	}
	.content .form-container h2 {
	color: #3B4234;
	font-family: "PPEditorialOldUltraBold";
	font-size: 45px;
	text-align: center;
	margin: 120px 0 0;
	padding-bottom: 20;
	}
	.image {
		order: 1;
	}

	.form-container {
		padding: 20px;
		margin: 30 0 0;
	}

	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea {
		width: calc(100% - 20px);
	}

	input[type="submit"] {
		width: 100%;
	}
}

/* Footer Styles */
footer {
	background-color: #1F1F1F;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.top-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.middle-section,
.bottom-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-links-left {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin-left: 300px;
}

.footer-links-right {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin-right: 300px;
}

.footer-links-left a,
.footer-links-right a {
	color: #B0B2AD;
	font-family: "PPEditorialNewRegular";
	text-decoration: none;
	margin-bottom: 15px;
	text-align: center;
}

.footer-links-left a:hover,
.footer-links-right a:hover {
	color: #FFFFFF;
	text-decoration: none;
	margin-bottom: 15px;
	text-align: center;
}

.footer-logo img {
	display: block;
	margin: 0 auto;
	flex: 0 0 auto;
	width: 120px;
}

.social-media {
	text-align: center;
	flex-grow: 1;
	display: flex;
	justify-content: center;
}

.social-media img {
	width: 60px;
	margin: 40px 20px 0px;
}

.ig-icon:hover img {
	content: url("Images/icons-03.png");
}

.tt-icon:hover img {
	content: url("Images/icons-02.png");
}

.fb-icon:hover img {
	content: url("Images/icons-04.png");
}

.copyright {
	text-align: center;
	margin-top: 20px;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	font-family: "Helvetica Light";
	color: #B0B2AD;
	font-size: 13px;
}

.social-media a {
	margin-right: 10px;
}

.back-to-topp {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
}

.bottom-section {
	align-items: center;
}

@media screen and (max-width: 768px) {
	.top-section .middle-section,
	.bottom-section {
		flex-direction: row;
		align-items: center;
	}
	
	.middle-section,
	.bottom-section {
		flex-direction: column;
		align-items: center;
	}

	.footer-links-left,
	.footer-links-right {
		flex-direction: column;
		justify-content: center;
		margin-left: 0;
		margin-right: 0;
	}

	.footer-links-left,
	.footer-links-right,
	.footer-logo {
		margin-bottom: 15px;
	}
}
