body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	overflow-x: hidden;
	color: white;
	text-align: center;
}
.container {
	height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background: url('../ressources/boat_id.webp') no-repeat center center/cover;
}
.container {
    position: relative;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(17, 33, 66, 0.5);
}
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 0;
	position: absolute;
	top: 0;
	z-index: 3;

}
.header .logo-container {
	display: flex;
	align-items: center;
	margin-left: 25px;
}
.header .logo-container img {
	height: 50px;
	margin-right: 10px;
}
.header .logo {
	font-size: 17px;
	font-weight: bold;
}
.nav {
	display: flex;
	gap: 80px;
	margin-right: 25px;
}
.nav a {
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 15px;
}
.nav a:hover {
	color: #FF9411;
}
.content {
	flex-grow: 1;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	position: relative;
	z-index: 2;
	width: 90%;
}
.content h1 {
	font-size: 65px;
	font-weight: bold;
	line-height: 1.2;
}
.footer {
	background-color: #112142;
	width: 100%;
	padding: 40px 0;
	color: white;
}
.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
	text-align: left;
}

.logo-partner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.logo-partner img {
	max-width: 150px;
	opacity: 30%;
	width: 100%;
	object-fit: contain;
}


.footer .footer-block {
	text-decoration: none;
}

.footer-block.large {
	flex: 2;
	min-width: 250px;
	
}
.footer-block.small {
	flex: 1;
	min-width: 180px;
	
}
.footer-title {
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 30px;
}
.footer-content a {
	color: #AAAAAA;
	text-decoration: none; 
	font-weight: 600;
	font-size: 12px;
}
.footer-content a:hover {
	color: #AAAAAA;
}
.footer-block p {
	margin-bottom: 35px;
	color: #AAAAAA;
	text-decoration: none; 
	font-weight: 600;
	font-size: 12px;
}
.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-input {
	flex: 1;
    width: auto; 
	padding: 8px;
	border-radius: 6px;
	border: none;
	background: #1E3763;
	color: white;
	font-style: italic;
}
.footer .top {
	text-align: center;
	opacity: 0.3;
	font-size: 35px;
	font-weight: bold;
	letter-spacing: 3px;
}
.footer .subtitle {
	font-size: 17px;
	margin-top: 15px;
	letter-spacing: 6px;
	font-weight: 500;
	opacity: 1;
}

.subtitle-partner {
	font-size: 15px;
	font-style: italic;
	margin-top: 15px;
	letter-spacing: 6px;
	font-weight: 500;
	opacity: 0.5;
}
.footer .separator {
	width: 90%;
	height: 1px;
	background: white;
	margin: 40px auto;
}
.footer .bottom-text {
	font-size: 12px;
	color: #909090;
}
.footer .bottom-bar {
	display: flex;
	justify-content: space-between;
	width: 90%;
	margin: 10px auto;
	font-size: 12px;
	color: #909090;
}
.footer-block i {
	color: white;
	font-size: 15px;
	margin-right: 10px;
}
.footer .bottom-bar a {
	text-decoration: none;
	color: #909090;
}
.scroll-down {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	animation: bounce 2s infinite;
}

.scroll-down i {
	font-size: 24px;
	color: white;
	opacity: 0.7;
}

@keyframes bounce {
	0%, 100% { transform: translate(-50%, 0); }
	50% { transform: translate(-50%, 10px); }
}
.hamburger {
	display: none;
	font-size: 24px;
	cursor: pointer;
	color: white;
	z-index: 5;
	margin-right: 25px;
}

.newsletter-button {
    background-color: #1E3763;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-button i {
    font-size: 16px;
}

.newsletter-button:hover {
    background-color: #2c4a86;
}
.snackbar {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #4CAF50;
	color: white;
	text-align: center;
	border-radius: 6px;
	padding: 12px;
	position: fixed;
	z-index: 999;
	left: 50%;
	bottom: 30px;
	font-size: 14px;
	opacity: 0;
	transition: opacity 0.5s ease, bottom 0.5s ease;
}

.snackbar.show {
	visibility: visible;
	opacity: 1;
	bottom: 50px;
}

.snackbar.error {
	background-color: #f44336;
}

@media (max-width: 1024px) {
	.nav {
		position: absolute;
		top: 70px;
		right: 0;
		background-color: rgba(17, 33, 66, 0.98);
		flex-direction: column;
		align-items: flex-end;
		padding: 20px;
		gap: 40px;
		display: none;
		width: auto;
		border-radius: 10px;
	}

	.nav.show {
		display: flex;
	}

	.hamburger {
		display: block;
	}
	.header .logo {
		font-size: 13px;
		font-weight: bold;
	}

	.header .logo-container img {
		height: 35px;
		margin-right: 10px;
	}

	.content h1 {
		font-size: 55px;
		font-weight: bold;
		line-height: 1.2;
	}

	.footer .top {
		font-size: 25px;
	}

	.footer .subtitle {
		font-size: 10px;
	}

	.footer-content {
		display: flex;
		flex-direction: column;
		justify-content: center!important;
		gap: 30px;
		flex-wrap: wrap;
		width: 90%;
		margin: 0 auto;
		text-align: left;
	}
}


.encart-close {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 16px;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.encart-close:hover {
    transform: scale(1.2);
}

.encart-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 119, 0, 0.8);
    color: white;
    border-radius: 15px;
    padding: 20px 25px 20px 20px;
    max-width: 300px;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    animation: slide-up 0.8s ease;
    overflow: hidden;
}

@keyframes slide-up {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slide-down {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(50px); opacity: 0; }
}

