:root {
	--sysseo-blue: #076380;
	--sysseo-blue-dark: #054d5a;
	--sysseo-slate: #0a282e;
	--sysseo-bg: #ecf1f3;
	--sysseo-card: #ffffff;
	--sysseo-border: rgba(7, 99, 128, 0.18);
}

html, body {
	height: 100%;
	min-height: 100vh;
}

body
{
	background-color: var(--sysseo-bg);
	font-family: "Helvetica",serif;
	color: #fff;
	margin: 0;
	font-size: 1.2rem;
	display: flex;
	flex-direction: column;
}

a {
	font-size: 1.2rem;
}

h1 {
	color : var(--sysseo-slate);
	font-weight: bold;
	font-size: 2.2rem;
}

header {
	background-color: var(--sysseo-blue);
}


p
{	
	font-family: "Helvetica",serif;
 	color:#fff;
}	

.sysseo-logo {
	height: 70px;
	width: auto;

}

/* === header improvements === */
header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 18px;
	padding: 16px 20px;
	box-shadow: 0 6px 18px rgba(5, 77, 90, 0.25);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header img {
	display: block;
}

.club-logo {
	height: 80px;
	width: auto;
}

.sysseo-logo {
	height: 64px;
	width: auto;
	margin-left: auto;
}

.header-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
}

.info-borne {
	font-size: 2rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.92);
}

.card-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	background: var(--sysseo-card);
	border: 1px solid var(--sysseo-border);
	border-radius: 10px;
	padding: 10px 14px;

	font-weight: 600;
	color: var(--sysseo-blue-dark);
	max-width: 50%;
	margin: 20px auto;
}

.badge-msg {
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 6px;
	background: rgba(7, 99, 128, 0.1);
	color: var(--sysseo-blue-dark);
}

.badge-titre {
	font-size: 1.5rem;
	color: var(--sysseo-card);
	font-weight: bold;
}


.menuprofil {
	margin-left: 12px;
	text-decoration: none;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	padding: 6px 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.menuprofil:hover,
.menuprofil:focus-visible {
	background: rgba(255, 255, 255, 0.2);
}

.actions-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 8px;
}

.action-btn {
	text-transform: uppercase;
	text-decoration: none;
	background-color: var(--sysseo-blue);
	border-radius: 10px;
	padding: 12px 18px;
	color: var(--sysseo-bg);
	margin: 0;
	transition: background-color 0.2s ease, transform 0.2s ease;
	font-weight: 600;
	letter-spacing: 0.4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-width: 170px;
}

.action-btn:hover {
	background-color: var(--sysseo-blue-dark);
	transform: translateY(-1px);
}



.footer {
        background-color: var(--sysseo-blue);
        padding: 15px 20px;
        text-align: center;
        border-top: 1px solid var(--sysseo-border);
		margin-top: auto;
		bottom: 0;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-logo img {
        max-width: 150px;
    }

	.menu-footer-link {
		color: var(--sysseo-card);
		text-decoration: none;
		margin: 0 8px;
		font-size: 0.8rem;
	}

	.copyright {
		color: var(--sysseo-card);
		font-size: 0.8rem;
	}


@media (max-width: 650px) {

	header {
		padding: 14px 16px;
		gap: 10px 12px;
	}

	.info-borne {
		flex-basis: 100%;
		margin-right: 0;
	}

	.sysseo-logo {
	display: none;
	}

	.club-logo {
	height: 50px;
	width: auto;
	}

	.badge-titre {
		font-size: 1.2rem;
	}

	.footer-logo img {
		max-width: 100px;
		margin-bottom: 12px;
	}
}
	

