:root {
	--dark-blue-ocean-1: #023859;
	--dark-blue-ocean-2: #3C7DA6;
	--dark-blue-ocean-3: #7EB6D9;
	--dark-blue-ocean-4: #012E40;
	--dark-blue-ocean-5: #011C26;
}

::selection {
	background-color: var(--dark-blue-ocean-3);
}

html,
body {
	width: 100%;
	height: 100%;

	scroll-behavior: smooth;

	font-family: 'Poppins', sans-serif;

	color: white;
	scrollbar-width: none;
	-ms-overflow-style: none;
	overflow-x: hidden;
}


@media (max-width: 1024px) {

	#hero-section h1, #overview h1 {
		font-size: 4vh;
	}

	#hero-section p, #overview p {
		font-size: 1.25vh;
	}

}

@media (min-width: 1025px) {

	#hero-section h1, #overview h1 {
		font-size: 10vh;
	}

	#hero-section p, #overview p {
		font-size: 2vh;
	}
	

}

body::-webkit-scrollbar {
	display: none;
}


.water-droplet-icon {
	width: 26px;
	height: 26px;
}

#hero-section {
	width: 100%;
	height: 100vh;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	text-align: center;

	background: linear-gradient(to top, var(--dark-blue-ocean-5), var(--dark-blue-ocean-2));
}

#hero-section h1,
#overview h1 {
	font-weight: bold;
	font-family: 'Bubblegum';

	text-transform: uppercase;

	color: white;
}

#hero-section p {
	display: flex;
	align-items: center;

	font-family: 'Aquatico', sans-serif;

	color: gray;
}

#hero-section a svg {
	margin-top: 40px;

	width: 100px;
	height: 100px;

	filter: drop-shadow(0 0 20px var(--dark-blue-ocean-5));

	animation: waterDropletArrow 3s ease-in-out infinite;
}

@keyframes waterDropletArrow {
	0% {
		transform: translateY(0%);
	}

	50% {
		transform: translateY(100%);
	}
}

#overview {
	width: 100%;
	height: 100vh;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	padding: 0 10vw;

	text-align: center;

	background-color: var(--dark-blue-ocean-5);
}

#overview p {
	line-height: 1.8;

	text-align: justify;

	color: gray;
}

#discover {
	width: 100%;
	height: 100vh;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	position: relative;
}

#discover>h1 {
	font-weight: bold;
	color: black;
}

#discover>img {
	height: 70vh;

	object-fit: contain;

	z-index: 5;
}

#hm-bd {
	animation: moveBody 20s infinite linear;
}

@keyframes moveBody {
	0% {
		transform: translate(0%, 0%);
	}

	25% {
		transform: translate(0%, 10%);
	}

	75% {
		transform: translate(0%, -10%);
	}
}

area:hover {
	cursor: help;
}

#discover-side-content {
	width: 30vw;

	display: flex;
	flex-direction: column;
	gap: 2vh;

	position: absolute;
	top: 40%;
	right: -100%;

	z-index: 30;

	padding: 2vw;

	border-radius: 5px 0 0 5px;

	background-color: var(--dark-blue-ocean-1);

	transition: 1s;
}

#discover-side-content h1 {
	font-weight: bold;
}

#discover-side-content p {
	color: rgb(198, 198, 198);
}

#close-side {
	position: absolute;
	top: 1vw;
	right: 1vw;

	cursor: pointer;
}

.chatbot {
	position: fixed;
	bottom: 2vw;
	right: 2vw;
	background-color: #007bff;
	color: black;
	padding: 15px;
	border-radius: 50%;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;

	z-index: 20;

	transition: background-color 1s ease;
}

.chatbot:hover {
	background-color: #61adff;
}

.chatbot-icon {
	width: 40px;
	height: 40px;

	object-fit: contain;
}

.chatbot-window {
	display: none;
	position: fixed;
	bottom: 6vw;
	right: 2vw;
	background: #8dc4ff;
	border: 2px solid #007bff;
	border-radius: 10px;
	width: 300px;
	z-index: 20;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.chatbot-header {
	background: #61adff;
	color: black;
	padding: 10px;
	border-radius: 10px 10px 0 0;
}

/* Styles pour la zone des messages */
.chatbot-messages {
	padding: 10px;
	height: 200px;
	overflow-y: auto;
	background: #d5e9ff;
	/* Fond beige clair */
	color: #000;
	/* Texte noir */
	font-family: 'Courier New', Courier, monospace;
}

/* Style pour l'entrée de texte */
.chatbot-input {
	width: calc(100% - 20px);
	margin: 10px;
	padding: 8px;
	border: 1px solid #61adff;
	/* Bordure marron */
	border-radius: 5px;
	background: #fff;
	/* Fond blanc */
	color: #000;
	/* Texte noir */
	font-family: 'Courier New', Courier, monospace;
}

#toggleButton:hover {
	background-color: #3f51b5;
}

#toggleButton {
	position: fixed;
	left: 2vw;
	bottom: 2vw;
	z-index: 1000;
	background-color: #007bff;

	padding: 20px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s;
}


#hero-section div {
	display: flex;
	flex-direction: row;
	align-items: center;
}

#human-container {
	position: relative;
	z-index: 10;
}

#wave-container {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 35%;
	overflow: hidden;
}

.wave {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
}

.wave+.wave {
	z-index: 2;
}

#wave-3 {
	z-index: 7;
}

#wave-2 {
	z-index: 6;
}

.bubble {
	z-index: 10;
}