/* Importing Google fonts*/
@import url("https://fonts.googleapis.com/css2?family=Satisfy&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

:root {
	/* Colors */
	--white-color: #fff;
	--dark-color: #252525;
	--primary-color: #f6ebe3;
	--header-color: #3e2f2b;
	--buttons-color: #3e2f2b;
	--buttons-hover-color: #c6a86b;
	--bodytext-color: #2b2b2b;
	--secondary-color: #9a6215;
	--light-pink-color: #faf4f5;
	--medium-gray-color: #ccc;

	/* Font size */
	--font-size-s: 0.9rem;
	--font-size-n: 1rem;
	--font-size-m: 1.12rem;
	--font-size-l: 1.5rem;
	--font-size-xl: 2rem;
	--font-size-xxl: 2.3rem;

	/* Font weight */
	--font-weight-normal: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;

	/* Border radius */
	--border-radius-s: 8px;
	--border-radius-m: 30px;
	--border-radius-circle: 50%;

	/* Site max width */
	--site-max-width: 1300px;
}

html {
	scroll-behavior: smooth;
}

/* Styling for whole site */
ul {
	list-style: none;
}

a {
	text-decoration: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
}

img {
	width: 100%;
}
.section-content {
	margin: 0 auto;
	padding: 0 20px;
	max-width: var(--site-max-width);
}

.section-title {
	text-align: center;
	padding: 60px 0 100px;
	text-transform: uppercase;
	font-size: var(--font-size-xl);
}

.section-title::after {
	content: "";
	width: 80px;
	height: 5px;
	display: block;
	margin: 10px auto 0;
	border-radius: var(--border-radius-s);
	background: var(--buttons-hover-color);
}
/* Navbar styling */
header {
	position: fixed;
	width: 100%;
	z-index: 5;
	background: var(--header-color);
}

header .navbar {
	display: flex;
	padding: 20px;
	align-items: center;
	justify-content: space-between;
}

.navbar .nav-logo .logo-text {
	color: var(--primary-color);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu {
	display: flex;
	gap: 10px;
}

.navbar .nav-menu .nav-link {
	padding: 10px 18px;
	color: var(--primary-color);
	font-size: var(--font-size-m);
	border-radius: var(--border-radius-m);
	transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
	color: var(--white-color);
	background: var(--buttons-hover-color);
}

.navbar :where(#menu-close-button, #menu-open-button) {
	display: none;
}

/* Call Style Section*/
.call-section {
	min-height: 100vh;
	background: var(--primary-color);
}

.call-section .section-content {
	display: flex;
	align-items: center;
	min-height: 100vh;
	color: var(--bodytext-color);
	justify-content: space-between;
}

.call-section .call-details .title {
	font-size: var(--font-size-xxl);
	color: var(--secondary-color);
	font-family: "Satisfy", sans-serif;
}

.call-section .call-details .subtitle {
	margin-top: 8px;
	max-width: 70%;
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-semibold);
}

.call-section .call-details .description {
	max-width: 70%;
	margin: 24px 0 40px;
	font-size: var(--font-size-m);
}

.call-section .call-details .buttons {
	display: flex;
	gap: 23px;
}

.call-section .call-details .button {
	padding: 10px 26px;
	border: 2px solid transparent;
	color: var(--primary-color);
	border-radius: var(--border-radius-m);
	background: var(--buttons-color);
	font-weight: var(--font-weight-medium);
	transition: 0.3s ease;
}

.call-section .call-details .button:hover,
.call-section .call-details .contact-us {
	color: var(--buttons-hover-color);
	border-color: var(--buttons-hover-color);
	background: transparent;
}

.call-section .call-details .contact-us:hover {
	color: var(--primary-color);
	border-color: var(--header-color);
	background: var(--buttons-color);
}

.call-section .call-image-wrapper {
	max-width: 500px;
	margin-right: 30px;
}

/* About style section */
.about-section {
	padding: 120px 0;
	background: var(--light-pink-color);
}
.about-section .section-content {
	display: flex;
	gap: 50px;
	align-items: center;
	justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
	width: 400px;
	height: 400px;
	object-fit: cover;
	border-radius: var(--border-radius-circle);
}

.about-section .about-details .section-title {
	padding: 0;
	margin-bottom: 50px;
}

.about-section .about-details {
	max-width: 50%;
}

.about-section .about-details .text {
	line-height: 30px;
	margin: 20px 0 30px;
	font-size: var(--font-size-m);
}

.about-section .social-link-list {
	display: flex;
	gap: 25px;
	justify-content: center;
}

.about-section .social-link-list .social-link {
	color: var(--headline-color);
	font-size: var(--font-size-l);
}

.about-section .social-link-list .social-link:hover {
	color: var(--buttons-hover-color);
}

/* Contact style section */
.contact-section {
	padding: 50px 0 100px;
	background: var(--primary-color);
}

.contact-section .section-content {
	display: flex;
	gap: 48px;
	align-items: flex-start;
	justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
	display: flex;
	gap: 20px;
	margin: 20px 0;
	align-items: center;
}

.contact-section .contact-info-list .contact-info i {
	font-size: var(--font-size-m);
}

.contact-section .contact-form {
	max-width: 50%;
	width: 640px;
	height: 3680px;
	border: none;
}

/* Footer style section */
.footer-section {
	padding: 50px 0;
	background: var(--dark-color);
}

.footer-section .section-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
	color: var(--primary-color);
	transition: 0.2s ease;
}

.footer-section .social-link-list {
	display: flex;
	gap: 25px;
}

.footer-section .social-link-list .social-link {
	font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover {
	color: var(--buttons-hover-color);
}

.footer-section .policy-text .separator {
	margin: 0 5px;
	color: var(--primary-color);
}

/* Responsive media query for max width 900px */
@media screen and (max-width: 900px) {
	:root {
		--font-size-m: 1rem;
		--font-size-l: 1.3rem;
		--font-size-xl: 1.5rem;
		--font-size-xxl: 1.8rem;
	}

	body.show-mobile-menu header::before {
		content: "";
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		backdrop-filter: blur(5px);
		background: rgba(0, 0, 0, 0.2);
	}

	.navbar :where(#menu-close-button, #menu-open-button) {
		display: block;
		font-size: var(--font-size-xl);
	}

	.navbar #menu-close-button {
		position: absolute;
		right: 30px;
		top: 30px;
	}

	.navbar #menu-open-button {
		color: var(--primary-color);
	}

	.navbar .nav-menu {
		display: block;
		position: fixed;
		left: -310px;
		top: 0;
		width: 310px;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-top: 100px;
		background: var(--primary-color);
		transition: left 0.2s ease;
	}

	body.show-mobile-menu .navbar .nav-menu {
		left: 0;
	}

	.navbar .nav-menu .nav-link {
		color: var(--headline-color);
		display: block;
		margin-top: 17px;
		font-size: var(--font-size-l);
	}

	.call-section .section-content {
		gap: 50px;
		text-align: center;
		padding: 30px 20px 20px;
		flex-direction: column-reverse;
		justify-content: center;
	}

	.call-section .call-details :is(.subtitle, .description), .about-section .about-details, .contact-section .contact-form {
		max-width: 100%;
	}

	.call-section .call-details .buttons {
		justify-content: center;
	}

	.call-section .call-image-wrapper {
		max-width: 270px;
		margin-right: 0;
		margin-top: 50px;
	}

	.about-section .section-content {
		gap: 70px;
		flex-direction: column-reverse;
	}

	.about-section .about-image-wrapper .about-image {
		width: 100%;
		height: 100%;
		max-width: 250px;
		aspect-ratio: 1;
	}

	.contact-section .section-content {
		gap: 50px;
		flex-direction: column-reverse;
	}

	.footer-section .section-content {
		flex-direction: column;
		gap: 20px;
	}
}
