/* =============================
   1. Reset and styles
============================= */

html,
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

section.new-footer-newsletter-section,
footer.bva-footer {
	font-family: var(--font-arial) !important;
}

/* NEWSLETTER SECTION */
.new-footer-newsletter-section {
	width: 100%;
	background-color: #1a2332;
	padding: 100px 0;
}

.new-footer-newsletter-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 40px;
}

.new-footer-newsletter-title {
	font-family: var(--font-futura-ndalt);
	font-size: 42px;
	font-weight: normal;
	line-height: 1.2;
	color: #ffffff;
	margin: 0;
}

.new-footer-newsletter-subtitle {
	font-family: var(--font-arial);
	font-size: var(--font-size-20);
	font-weight: normal;
	line-height: 1.6;
	color: #ffffff;
	margin: 0;
}

.new-footer-newsletter-form {
	display: flex;
	gap: 15px;
	width: 100%;
	max-width: 600px;
	margin-top: 20px;
}

.new-footer-newsletter-input {
	flex: 1;
	font-family: var(--font-arial);
	font-size: var(--font-size-20);
	color: #ffffff;
	background-color: transparent;
	border: 1.5px solid #ffffff;
	border-radius: 50px;
	padding: 14px 28px;
	outline: none;
	transition: all 0.3s ease;
}

.new-footer-newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.new-footer-newsletter-input:focus {
	border-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.05);
}

.new-footer-newsletter-submit {
	font-family: var(--font-arial);
	font-size: var(--font-size-20);
	color: var(--color-black);
	background-color: #ffffff;
	border: none;
	border-radius: 50px;
	padding: 14px 32px;
	white-space: nowrap;
	cursor: pointer;
	transition: all 0.3s ease;
}

.new-footer-newsletter-submit:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
}

.new-footer-newsletter-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.new-footer-newsletter-status {
	margin-top: 12px;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-family: var(--font-arial);
	text-align: center;
}

.new-footer-newsletter-status.error {
	background-color: rgba(220, 38, 38, 0.1);
	color: #dc2626;
	border: 1px solid rgba(220, 38, 38, 0.3);
}

.new-footer-newsletter-status.success {
	background-color: rgba(34, 197, 94, 0.1);
	color: #22c55e;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

/* FOOTER: Styles du pied de page */
.bva-footer {
	background-color: #a04f17;
	color: var(--color-white);
	font-size: 1em;
	padding: 50px 80px;
	text-align: left;
}

.bva-footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 40px 0;
	line-height: 1.5em;
}

.bva-footer-col {
	flex: 1 1 200px;
	padding: 0;
	margin: 0 50px;
}

/* FOOTER: Titles and nav */
.bva-footer-col h4 {
	border-bottom: 1px dashed var(--color-white) !important;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.bva-footer-col ul {
	padding-left: 0;
	list-style: none;
}

.bva-footer-col li {
	margin-bottom: 8px;
}

.bva-footer a {
	color: var(--color-white);
	text-decoration: none;
}
/* FOOTER: Titles and nav */

.bva-footer-bottom {
	padding-top: 15px;
	text-align: center;
}

.bva-footer-bottom p {
	max-width: 1000px;
	margin: 20px auto 0;
	line-height: 1.5em;
	text-align: justify;
	color: white;
}

.bva-footer-logo-section {
	text-align: center;
	margin-bottom: 40px;
}

img.bva-footer-logo {
	width: 217px;
	margin-bottom: 10px;
}

.bva-footer-logo-section p {
	max-width: 100%;
	margin: 0 auto;
	font-size: 1em;
	line-height: 1.8;
}

.bva-legals-links {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	align-items: center;
}
.bva-legals-links span {
	position: relative;
}
.bva-legals-links span:before {
	position: absolute;
	top: 50%;
	right: -25px;
	transform: translateY(-50%);
	content: '|';
	color: var(--color-white);
	font-size: 8px;
	font-family: var(--font-futura);
	padding: 0 8px;
}
.bva-legals-links span:last-child:before {
	display: none;
}

.footer-separator {
	color: var(--color-white);
}

p.copyright {
	text-align: center;
}

.bva-footer-links {
	padding-top: 50px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
	.new-footer-newsletter-section {
		padding: 80px 0;
	}

	.new-footer-newsletter-title {
		font-size: 36px;
	}

	.new-footer-newsletter-subtitle {
		font-size: var(--font-size-17);
	}

	.new-footer-newsletter-container {
		padding: 0 20px;
	}
}

@media (max-width: 768px) {
	.new-footer-newsletter-section {
		padding: 60px 0;
	}

	.new-footer-newsletter-container {
		gap: 25px;
		padding: 0 20px;
	}

	.new-footer-newsletter-title {
		font-size: 32px;
	}

	.new-footer-newsletter-subtitle {
		font-size: var(--font-size-20);
	}

	.new-footer-newsletter-form {
		flex-direction: column;
		gap: 15px;
	}

	.new-footer-newsletter-submit {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.new-footer-newsletter-section {
		padding: 50px 0;
	}

	.new-footer-newsletter-container {
		gap: 20px;
		padding: 0 15px;
	}

	.new-footer-newsletter-title {
		font-size: 26px;
	}

	.new-footer-newsletter-subtitle {
		font-size: 16px;
	}

	.new-footer-newsletter-input {
		font-size: 16px;
		padding: 12px 24px;
	}

	.new-footer-newsletter-submit {
		font-size: 16px;
		padding: 12px 28px;
	}
	img.bva-footer-logo {
		width: 150px;
		margin-bottom: 10px;
	}

	.bva-legals-links {
		gap: 10px;
	}

	.bva-footer-legals a {
		display: block;
		padding: 5px 0;
		text-align: center;
		text-decoration: underline !important;
	}

	.bva-footer-legals p {
		text-align: center;
	}

	.bva-footer-bottom p {
		text-align: left;
		line-height: 1.5em;
	}

	.bva-footer {
		padding: 20px;
		font-size: var(--font-size-20);
	}

	.bva-footer a {
		color: white;
		text-decoration: none;
		word-break: break-word;
	}

	.bva-footer-col {
		padding: 0;
		margin: 45px 0;
	}

	.bva-footer-content {
		display: block;
	}

	.footer-separator {
		display: none;
	}
}
