
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Spectral:ital,wght@0,300;0,400;0,600;0,800;1,300;1,400;1,600;1,800&display=swap');

body {
	max-width: 1920px;
	margin: auto;
}

*, .strong_normal {
	font-family: 'Inter';
	font-style: normal;
	font-weight: normal;
	line-height: var(--bs-body-line-height);
}


.top-header {
	background-color: white;
	position: sticky;
	top:0;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	padding-inline: 100px;
	padding-block: 30px;
	align-items: center;
}

h1 {
	font-size: 26px;
}

.nav ul {
	display: flex;
	list-style-type: none;
	font-size: 14px;
	margin-bottom: 0;
}

.nav li {
	padding-inline: 10px;
}

.nav a {
	text-decoration: none;
	color: #000
}

img {
	width: 100%;
	height: auto;

}

#about {
	display: flex;
	justify-content: space-between;
	background-color: #F6D2B8;
	padding-inline: 100px;
	padding-block: 100px;
	position: relative;
	align-items: center;
}

.picture.left::before {
	content: ' ';
	background-color: #E5975F;
	width: 374px;
	height: 329px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.picture {
	flex: 1;
	margin: 0 20px;
	z-index: 0;
}

#about-me {
	margin: 0 0 0 20px;
	flex: 2;
}

.about-me__title {
	margin-top: 1em;
	margin-bottom: 60px;
	font-size: 30px;
}

.about-me__introduction {
	font-family: "Spectral";
	font-weight: 800;
	font-style: italic;
	width: 60%;
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.about-me__description {
	width: 80%;
	font-size: 14px;
	margin-bottom: 1rem;
}

/* #gallery {
		min-height: 100vh;
} */

.title{
	text-align: center;
	padding-block: 2em;
	font-size: calc(1.3rem + 0.6vw);
}

.gallery .nav {
	justify-content: center;
}

.nav-pills .active-tag, .nav-pills .show > .nav-link {
	background-color: #BEB45A;
	font-weight: 600;
	border-radius: 5px ;
	color: #000;
}

.nav-pills .nav-link {
	color: #000
}

.item-column {
	position: relative;
	margin-bottom: 0 !important;
	padding: 0;
}

.item-column::after{
	content: "";
	display: block;
	padding-bottom: 100%;
}

.gallery-item {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: .5em;
}

.mg-prev, .mg-next {
	width: 30px;
	height: 30px;
	border-radius: 00%;
	justify-content: center;
	align-items: center;
	display: flex;
	font-size: 24px;
}

.quote {
	width: 70%;
	margin: auto;
	padding-block: 3em;
}

.quote__text {
	font-family: "Spectral";
	font-style: italic;
	font-weight: 300;
	font-size: 2.2rem;
}

.quote__author {
	font-family: "Spectral";
	font-weight: 800;
	font-size: 22px;
}

#services {
	margin: auto;
	background-color: #A8D5D8 ;
	position: relative;
}

#services .container::before{
	content: ' ';
	background-color: #1C6474;
	position: absolute;
	width: 100%;
	height: 30%;
	bottom: 0;
	left: 0;
	z-index: 0;
}

#services .container {
	justify-content: space-between;
	display: flex;
	padding : 2em 0;
}

.service {
	background-color: white;
	max-width: 390px;
	width: 30%;
	height: 337px;
	padding: 1em;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 1;
}

.service__name {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	font-size: calc(1.3rem + 0.6vw);
	margin-bottom: 0.5rem;

}

.price {
	font-size: calc(1.275rem + 0.3vw);
}

#contact {
	margin: auto;
	background-color: #D8D3A8 ;
	position: relative;
	padding-inline: 100px;
	padding-block: 100px;
}

#contact .container {
	display: flex;
}

.contact__title {
	font-size: calc(1.3rem + 0.6vw);
	margin-bottom: 0.5rem;
}

.contact__title, p {
	margin-bottom: 1rem;
}

.picture.right::before {
	content: ' ';
	background-color: #BEB45A;
	width: 374px;
	height: 329px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.form-container {
	flex : 2;
}

form {
	display: flex;
	flex-direction: column;
	width: 70%;
	align-items: flex-start;
}

form input {
	width: 100%;
	background-color: transparent;
	border: solid 1px;
	height: 2.5em;
	margin-bottom: 20px;
}

form textarea {
	width: 100%;
	background-color: transparent;
	border: solid 1px;
	height: 5em;
	line-height: 2.5em;
	font-size: 1.2em;
	margin-bottom: 20px;
}

::placeholder {
	font-size: 14px;
	font-style: italic;
	font-weight: 200;
	color: dimgray;
}

input[type="submit"] {
	background-color: #BEB45A;
	padding: .5em 1em
}