@import "../font/stylesheet.css";
html {
	font-size: 20px;
	font-family: "Inter";
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
}

/*PALETTE*/
.color-primary {
	color: #0a5641;
}
.color-white {
	color: white;
}

/*Font*/
p {
	font-weight: 300;
}

h1 {
	font-size: 3.5rem;
}

a {
	color: inherit;
}
/*Form*/
.form-contact {
	display: flex;
}

.input-text {
	border-radius: 3px;
	padding: 10px 20px;
	padding-right: 40px;
	max-width: 60%;
	border: none;
}

.input-text:focus {
	box-shadow: none;
}

.btn-submit {
	background-color: palevioletred;
	color: white;
	flex: none;
	border: none;
	padding: 10px 20px;
	transform: scale(1.2);
	border-radius: 3px;
	transition: transform 0.3s ease;
}

.btn-submit:hover,
.btn-submit:focus,
.btn-submit:active {
	transform: scale(1.3);
}

/*Button*/
.btn {
	padding: 10px 30px;
	border: 1px solid;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 20px;
	border-radius: 30px;
	letter-spacing: 2px;
}

.btn-secondary-fill {
	border-color: #ebe54a;
	background-color: #ebe54a;
	color: #0a5641;
}
.btn-secondary-fill:hover,
.btn-secondary-fill:active,
.btn-secondary-fill:focus {
	background-color: #0a5641;
	color: #ebe54a;
	border-color: #0a5641;
}

.btn-primary-fill {
	border-color: #0a5641;
	background-color: #0a5641;
	color: white;
}
.btn-primary-fill:hover,
.btn-primary-fill:active,
.btn-primary-fill:focus {
	background-color: white;
	color: #0a5641;
}

/*landing*/
.landing-page {
	min-height: 100vh;
	width: 100vw;
	overflow-x: hidden;
}

.row,
.container {
	min-height: inherit;
}

.heading {
	font-size: 48px;
}

.social {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.social:hover,
.social:active,
.social:focus {
	transform: scale(1.2);
}

.col-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 30px;
	padding-bottom: 50px;
	padding-left: 80px;
	gap: 60px;
}

.logo {
	max-width: 200px;
}

.col-image {
	position: relative;
}

.image-container {
	position: absolute;
	inset: 0;
	left: calc((100vw - var(--oi-container-size)) / 2 * -1 - 15px);
}

.featured-image {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	filter: grayscale(1);
}

@media screen and (max-width: 991px) {
	h1 {
		font-size: 3rem;
	}
	.col-content {
		padding: 30px;
		padding-top: 20px;
	}
	.col-image {
		aspect-ratio: 1;
	}
	.image-container {
		right: calc((100vw - var(--oi-container-size)) / 2 * -1 - 15px);
	}
	.logo {
		max-width: 60%;
		margin: auto;
	}
}
@media screen and (max-width: 576px) {
	h1 {
		font-size: 2rem;
	}
	.logo {
		max-width: 70%;
	}
	.form-contact {
		flex-direction: column;
	}
	.input-text {
		max-width: 100%;
	}
	.btn-submit {
		transform: scale(1);
	}
	.btn-submit:hover {
		transform: scale(1.1);
	}
}

/* Container */
body {
	--oi-container-size: 1520px;
}
@media (max-width: 1599px) {
	body {
		--oi-container-size: 1320px;
	}
}
@media (max-width: 1399px) {
	body {
		--oi-container-size: 1140px;
	}
}
@media (max-width: 1199px) {
	body {
		--oi-container-size: 960px;
	}
}
@media (max-width: 991px) {
	body {
		--oi-container-size: 720px;
	}
}
@media (max-width: 767px) {
	body {
		--oi-container-size: 540px;
	}
}
@media (max-width: 575px) {
	body {
		--oi-container-size: 100%;
	}
}

@media (min-width: 1600px) {
	.container {
		max-width: var(--oi-container-size);
	}
}
