/*******************
  FOOTER
*******************/

footer {
	position: relative;
	background: #0a2426;
	color: #f5f5f5;
	padding: 51px 0;
	overflow: hidden;
	text-align: left;
}

/* Neutralise le padding du wrapper générique dans le footer */
footer > .wrapper {
	display: flex;
	flex-direction: column;
}

/* ---- Slogan ---- */
.footer-slogan {
	margin-bottom: 120px;
}
.footer-slogan > * {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 400;
	line-height: 1;
	color: #f5f5f5;
	font-family: var(--titleFont);
}

/* ---- Rangée du bas : logo + infos ---- */
footer .grid {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
}

footer .grid > div {
	flex: 0 0 auto;
}

/* Logo blanc */
.footer-logo img {
	height: 50px;
	width: auto;
	display: block;
	opacity: 0.9;
}
.footer-logo img:hover {
	opacity: 1;
}

/* Liens nav + adresse */
footer .grid > div > .ps-menu,
footer .ps-menu {
	margin-bottom: 24px;
}
footer .ps-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
footer .ps-menu li {
	margin: 0;
}
footer .ps-menu a {
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0.03em;
	color: #f5f5f5;
	font-family: var(--baseFont);
	transition: opacity 0.25s;
}
footer .ps-menu a:hover {
	opacity: 0.6;
	text-decoration: none;
}

footer .text {
	letter-spacing: 0.03em;
}
footer .text p {
}
footer .text a {
	color: #f5f5f5;
	opacity: 0.6;
	transition: opacity 0.25s;
}


/* ---- Responsive ---- */
@media screen and (max-width: 900px) {
	footer > .wrapper { padding: 0 40px; }
	footer .grid {
		flex-direction: column;
		align-items: flex-start;
		gap: 40px;
	}
	.footer-slogan { margin-bottom: 60px; }
}

@media screen and (max-width: 600px) {
	footer > .wrapper { padding: 0 20px; }
	.footer-slogan { margin-bottom: 40px; }
}

