/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
		Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	background-color: #000;
	color: #f4f4f4;
	overflow-x: hidden;
}

/* Canvas Background */
#particleCanvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #ffffff, #e5e7eb);
	z-index: 0;
}

/* Container */
.container {
	position: relative;
	z-index: 10;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10rem 1rem;
}

/* Main Wrapper */
.main-wrapper {
	position: relative;
}

/* SVG Container */
.svg-container {
	width: 100%;
	filter: drop-shadow(0 25px 50px rgba(244, 244, 244, 0.45));
}

/* Content Overlay */
.content-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 3rem;
	padding-top: 5rem;
}

/* langage switcher */
.langage-switcher {
display: block; 
position: absolute;
top: -2rem;
right: 1rem;
/* margin-top: -40px;
margin-right: 15px; */
font-size: 18px;
z-index: 999;
a {
	text-decoration: none;
}	
}

/* Logo */
.logo {
	position: absolute;
	top: -6rem;
	left: 50%;
	transform: translateX(-50%);
	width: 13rem;
	z-index: 20;
}

/* row */
.row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 30px;
	min-width: 100%;
}

/* Columns */
.column {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
	padding-top: 3rem;
	width: 100%;
}

/* content */
.content-wrapper {
	background-color: #000;
	border: 1px solid #000;
	border-radius: 25px;
	padding: 3rem 2rem;
	filter: drop-shadow(0 25px 50px rgba(244, 244, 244, 0.45));
}

/* Typography */
h1 {
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1.5;
}

h2 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
}

h3 {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}

p {
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

a {
	line-height: 1.6;
	margin-bottom: 0.5rem;
	color: #F6E500;
	text-decoration: none;
}
a:hover {
	color: #fff;
}

/* CTA Button */
.cta-button {
	background-color: #074f6a;
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 0.5rem;
	border: none;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s;
	align-self: flex-start;
}

.cta-button:hover {
	background-color: #0c6384;
}

/* Projects */
.projects {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.project-card {
	background-color: #3a3a3a;
	border-radius: 0.5rem;
	padding: 1rem;
	border: 1px solid #5e5e5e;
}

.project-card p {
	color: #f4f4f4;
}

/* label */

.label {
display: inline-block; 
float: right; 
margin: 0; 
padding: 1px 20px 2px 20px; 
border: 1px solid #000; 
border-radius: 15px; 
background-color: #f0ea97; 
color: #3a3a3a; 
font-size: 12px;
}

.partner-logo {
display: inline-block;
float: right;
max-width: 200px;
max-height: 100px;
margin-top: 25px;	
}

/* Footer Text */
.footer-text {
	margin-top: 5rem;
	text-align: center;
}

.footer-text p {
	color: #f4f4f4;
}

/* Responsive adjustments */
@media (max-width: 767px) {
	.container {
		padding: 4rem 1rem;
	}

	.content-overlay {
		padding: 2rem;
		padding-top: 3rem;
	}

	.logo {
		width: 10rem;
		top: -2.5rem;
	}

	.row {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		column-gap: 20px;
		min-width: 100%;
	}

	h1 {
		font-size: 1.5rem;
	}

	h2 {
		font-size: 1.25rem;
	}
}
