* {
	margin: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #6c2f0e;
	--background-color: #f2ebe7;
	--text-color: #000000;
}

html,
body {
	max-width: 100%;
	overflow-x: hidden;
	font-family: "Figtree", serif;
	font-optical-sizing: auto;
	font-style: normal;
	background-color: var(--background-color);
	scroll-behavior: smooth;
}

h2,
h3 {
	all: unset;
}

button {
	border: none;
	cursor: pointer;
}

.hero-heading {
	font-size: clamp(24px, 10vw, 128px);
	font-weight: 500;
	color: var(--primary-color);
}

.hero-subheading {
	font-size: clamp(20px, 7vw, 60px);
	color: #78340f;
	opacity: 0.8;
}

.hero-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-inline: 2rem;
	text-align: right;
}

.hero-section {
	height: 100dvh;
	padding-block: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
}

.hero-top {
	padding-left: 2rem;
	border-left: 4px solid var(--primary-color);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-inline: 2rem;
}

.hero-about {
	max-width: min(80vw, 600px);
}

.hero-button {
	font-size: 1rem;
	padding-inline: 24px;
	padding-block: 12px;
	background-color: var(--primary-color);
	color: white;
	width: fit-content;
	margin-top: 1rem;
}

.hero-mid {
	/* flex: 1 1 auto; */
	overflow: hidden;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-image {
	width: 100vw;
	height: 33vh;
	object-fit: cover;
}

.icons {
	color: var(--primary-color);
	width: 48px;
}

.services-section {
	position: relative;
	min-height: 100dvh;
	width: 100vw;
	display: flex;
}

.services-background-image {
	height: 100%;
	width: 100%;
	object-fit: cover;
	opacity: 0.25;
	position: absolute;
	z-index: 0;
}

.services-container {
	padding-inline: 2rem;
	padding-block: 4rem;
	position: relative;
	z-index: 1;
	min-height: 100dvh;
	width: 100%;

	display: flex;
	justify-content: center;
	align-items: center;
}

.services-container-inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 4rem;
	max-width: 1200px;
}

.services-container-header {
	flex: 1;
}
.services-container-header-inner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 800px;
}

.services-container-header-header {
	font-size: 80px;
	color: #78340f;
}

.services-container-content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	flex: 1;
	max-width: 800px;
}

.services-item {
	display: none;
	border-style: solid;
	border-color: var(--primary-color);
	border-width: 0rem 0rem 0rem 0.125rem;
	padding: 0rem 2rem 0rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: flex-start;
	justify-content: flex-start;
}

.services-item-header {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	align-items: center;
	justify-content: flex-start;
	align-self: stretch;
	position: relative;
	color: var(--primary-color);
	font-size: 36px;
}

.services-item-content {
	color: #000000;
	text-align: left;
	font-family: "Figtree-Regular", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	position: relative;
	align-self: stretch;
}

.contact-section {
	min-height: 100dvh;
	width: 100vw;
}

.contact-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 4rem;
	min-height: 100dvh;
	width: 100%;
	padding-inline: 2rem;
	padding-top: 4rem;
	padding-bottom: 2rem;
}

.contact-cta {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 720px;
}

.contact-header {
	color: var(--primary-color);
	font-size: 54px;
}

.contact-contact {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 460px;
}

.footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	gap: 2rem;
}

.copyright {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: right;
}

.email {
	color: black;
	text-decoration: underline;
}

.webmotions {
	color: black;
	text-decoration: underline;
}

@media (max-width: 1280px) {
	/** Extra large screens */
	.services-container-header-header {
		font-size: 60px;
	}

	.services-section {
		height: unset;
	}

	.services-container-inner {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-start;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	/* tablet styles */
	.icons {
		width: 32px;
	}

	.services-container-header-header {
		font-size: 40px;
	}

	.services-item-header {
		font-size: 28px;
	}

	.contact-header {
		color: var(--primary-color);
		font-size: 44px;
	}

	.footer {
		display: flex;
		flex-direction: column;
		gap: 4rem;
		align-items: flex-start;
	}

	.copyright {
		text-align: left;
	}
}

@media (max-width: 480px) {
	/* mobile styles */

	.hero-section {
		padding-bottom: 1rem;
	}

	.hero-top {
		margin-inline: 1.5rem;
		padding-left: 1.5rem;
		border-left: 4px solid var(--primary-color);
	}

	.hero-about {
		max-width: 100%;
	}

	.hero-subheading {
		text-align: center;
	}

	.hero-bottom {
		flex-direction: column-reverse;
		gap: 1rem;
		align-items: center;
	}

	.services-container-header-header {
		font-size: 32px;
	}

	.services-item {
		padding: 0rem 1rem 0rem 1rem;
		gap: 1rem;
	}

	.services-item-header {
		gap: 0.5rem;
		font-size: 24px;
	}

	.icons {
		width: 24px;
	}

	.contact-header {
		color: var(--primary-color);
		font-size: 32px;
	}
}

@media (max-height: 600px) {
	.hero-section {
		height: unset;
	}
}

.fade-in-image {
	animation: fadeIn 3s ease-in-out;
	-webkit-animation: fadeIn 3s;
	-moz-animation: fadeIn 3s;
	-o-animation: fadeIn 3s;
	-ms-animation: fadeIn 3s;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-ms-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
