/* Font pour la landing page */
.google-sans-font {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
}

header {
	background: #f3f4f6;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 32px;
}

.logo {
	width: min(50%, 200px);
	padding-right: 45px;
	height: auto;
}

.title {
	font-family: "Google Sans", sans-serif;
	font-weight: 500;
	font-size: 150%;
	color: #06244b;
}

.title::after {
	content: "";
	display: block;
	width: 10%;
	height: 4px;
	margin: 25px auto 0;
	background-color: #e20d17;

}

body {
	background: #f3f4f6;
}

.main-content {
	font-family: "Google Sans", sans-serif;
	width: min(90%, 660px);
	margin: auto;
	color: #06244b;
}

.profile {
	margin-bottom: 35px;
	text-align: center;
}

.profile h1 {
	margin: 0;
	font-size: 2.4rem;
	font-weight: 700;
}

.profile p {
	margin: 8px 0 0;
	font-size: 1.35rem;
	color: #e20d17;
}

.contact-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.contact-button {
	display: flex;
	align-items: center;
	gap: 18px;

	min-height: 86px;
	padding: 14px 22px;

	border: 1px solid #e1e4e8;
	border-radius: 10px;

	color: #06244b;
	background-color: #f3f4f6;
	text-decoration: none;

	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.contact-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;

	width: 58px;
	height: 58px;

	border-radius: 50%;

	font-size: 1.8rem;
	font-weight: 700;
	color: #f3f4f6;
}

.contact-icon--blue {
	background-color: #06244b;
}

.contact-icon--call {
	width: 60%;
	height: 60%;
}

.contact-icon--red {
	background-color: #e20d17;
}

.contact-icon--mail {
	width: 60%;
	height: 60%;
}

.contact-icon--linkedin {
	background-color: #087eb8;
	font-family: "Google Sans", sans-serif;	
	font-size: 2.50rem;
}

.contact-icon--instagram {
	background-color: #f3f4f6;
	width: 58px;
	height: 58px;
}

.contact-icon--white {
	color: #06244b;
}

.contact-icon--contact {
	width: 110%;
	height: 110%;
}

.contact-text {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 5px;
}

.contact-text strong {
	font-size: 1.25rem;
}

.contact-text small {
	font-size: 1rem;
	color: #43536d;
}

.contact-arrow,
.contact-download {
	margin-left: auto;
	font-size: 2.5rem;
	font-weight: 300;
}

.contact-button--primary {
	border-color: #06244b;
	color: white;
	background-color: #06244b;
}

.contact-button--primary small {
	color: #dbe5f4;
}

.services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);

	margin-top: 48px;
}

.service {
	padding: 10px 20px;
	text-align: center;
}

.service-devweb {
	display: block;
	width: 60px;
	height: 60px;
	margin: auto;
}

.service-infoge {
	display: block;
	width: 60px;
	height: 60px;
	margin: auto;
}

.service-software {
	display: block;
	width: 60px;
	height: 60px;
	margin: auto;
}

.service + .service {
	border-left: 1px solid #d8dde5;
}

.service-icon {
	display: block;
	min-height: 45px;
	font-size: 2.2rem;
	font-weight: 600;
}

.service h2 {
	margin: 15px 0 10px;
	font-size: 0.95rem;
	text-transform: uppercase;
}

.service p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #43536d;
}

.availability {
	display: flex;
	align-items: center;
	gap: 20px;

	margin-top: 42px;
	padding: 20px 24px;

	border: 1px solid #cfe2c9;
	border-radius: 10px;

	background-color: #f7fbf5;
}

.availability-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;

	width: 52px;
	height: 52px;

	border: 3px solid #168313;
	border-radius: 50%;

	font-size: 1.8rem;
	color: #168313;
}

.availability strong {
	display: block;
	font-size: 1.15rem;
	color: #168313;
}

.availability p {
	margin: 6px 0 0;
	color: #43536d;
}

.preparation {
	margin-top: 38px;
	text-align: center;
}

.preparation h2 {
	margin: 0;
	font-size: 1.1rem;
}

.preparation p {
	margin: 12px 0 0;
	line-height: 1.6;
	color: #43536d;
}

.preparation::after {
	content: "";
	display: block;
	width: 10%;
	height: 4px;
	margin: 25px auto 0;
	background-color: #e20d17;
}

/* Layout responsive mais faut test mdrr */

@media (max-width: 600px) {
	.main-content {
		width: min(92%, 660px);
		padding-top: 30px;
	}

	.profile h1 {
		font-size: 1.9rem;
	}

	.profile p {
		font-size: 1.1rem;
	}

	.contact-button {
		min-height: 76px;
		padding: 12px 15px;
		gap: 13px;
	}

	.contact-icon {
		width: 48px;
		height: 48px;
		font-size: 1.4rem;
	}

	.contact-text strong {
		font-size: 1rem;
	}

	.contact-text small {
		font-size: 0.82rem;
	}

	.contact-arrow,
	.contact-download {
		font-size: 2rem;
	}

	.services {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.service {
		padding: 20px;
	}

	.service + .service {
		border-top: 1px solid #d8dde5;
		border-left: none;
	}

	.availability {
		align-items: flex-start;
		padding: 18px;
	}

	.availability strong {
		font-size: 1rem;
	}
}


footer {
	color: #06244b;
	text-align: center;
	padding: 32px;
}

.copyright {
	font-family: "Google Sans", sans-serif;
	font-weight: 500;
	font-size: 100%;
	padding: 5px;
	padding-right: 5px;
	color: #06244b;
}



@media (max-width: 600px) {
	main {
		width: 100%;
		margin: 0;
		padding: 32px 20px;
	}
}