* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(135deg, #0a2342 0%, #1a4d6d 50%, #2d6a8a 100%);
	color: #ffffff;
	overflow-x: hidden;
	position: relative;
}

/* Animation des vagues en arrière-plan */
.ocean-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 200%;
	height: 400px;
	background: linear-gradient(180deg, transparent, rgba(42, 157, 204, 0.2));
	border-radius: 40% 60%;
	animation: wave-animation 15s ease-in-out infinite;
}

.wave1 {
	opacity: 0.7;
	animation-delay: 0s;
}

.wave2 {
	opacity: 0.6;
	animation-delay: -5s;
	animation-duration: 18s;
}

.wave3 {
	opacity: 0.5;
	animation-delay: -10s;
	animation-duration: 22s;
}

@keyframes wave-animation {

	0%,
	100% {
		transform: translateX(0) translateY(0);
	}

	50% {
		transform: translateX(-25%) translateY(-20px);
	}
}

/* Conteneur principal */
.container {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 2rem;
	max-width: 600px;
	animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Logo SVG */
.logo {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
	color: #5cb3cc;
	animation: float 3s ease-in-out infinite;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 4px 8px rgba(92, 179, 204, 0.3));
	display: block;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* Typographie */
h1 {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, #5cb3cc, #a8dadc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 1px;
}

.tagline {
	font-size: 1.1rem;
	font-weight: 300;
	color: #a8dadc;
	margin-bottom: 2rem;
	opacity: 0.9;
}

/* Statut avec pulse */
.status {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 500;
}

.pulse {
	width: 12px;
	height: 12px;
	background: #ff8c42;
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
	box-shadow: 0 0 15px #ff8c42;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.7;
	}
}

.status span {
	font-size: 0.9rem;
	font-weight: 400;
}

/* Description */
.description {
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2.5rem;
	font-weight: 300;
}

/* Email contact */
.contact {
	position: fixed;
	bottom: 4rem;
	width: 100%;
	text-align: center;
	z-index: 1;
}

.email {
	display: inline-block;
	color: #5cb3cc;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 400;
	padding: 0.75rem 1.5rem;
	transition: all 0.3s ease;
}

.email:hover {
	color: #a8dadc;
	transform: translateY(-2px);
}

/* Footer */
footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 1.5rem;
	text-align: center;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
	z-index: 1;
	background: linear-gradient(to top, rgba(10, 35, 66, 0.5), transparent);
}

/* Responsive */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	.tagline {
		font-size: 1rem;
	}

	.description {
		font-size: 0.95rem;
	}

	.logo {
		width: 60px;
		height: 60px;
	}

	.container {
		padding: 1.5rem;
	}
}