body {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size : 1.2em;
	color: #555;
	margin: 0;
	padding: 0;
	background-image : url("../images/assets/fresque.jpg");
	-background-image : url("../images/taijutsu/PA294800.JPG");
	background-attachment: fixed;
	background-position : -000px 0px;
	-background-position : -400px 0px;
}

a {
	text-decoration : none;
}

.hidden {
	display : none;
}

header {
	display: flex;
	flex-direction : row;
	justify-content: space-between;
	align-items: center;
	padding: 1em 2em;
	background-color: #911;
	color : #f5f5f5;
}

header a {
	text-decoration : none;
	color : #f5f5f5;
}

header h1, header h2 {
	color : #f5f5f5;
}

header h1 {
	font-size : 1.5em;
}

header h2 {
	font-size : 1.3em;
}

.header-logo-title-container {
	display: flex;
}

.header-logo-container {
	display: flex;
	margin-right: 2em;
	align-items : center;
}

.header-logo-container a {
	display : flex;
}

.header-logo-container img {
	height : 120px;
	justify-content : center;
	align-items : center;
}

.menu-icon {
	display: none;
	width: 3em;
	margin-left: 0;
	cursor: pointer;
}

.dropdown-menu-container {
	display : flex;
	align-items : center;
	width : 100%;
	transition: max-height 0.5s ease;
	overflow: hidden;
}
.nav-menu {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap : 1em;

	font-size : 1.3em;
}

.nav-menu a {
	text-decoration: none;
	color: white;
	font-weight: bold;
	transition: color 0.3s;
}

.nav-menu a:hover {
	color: #FFD700; /* Gold color on hover */
}

.nav-menu img {
	width : 75px;
	height: 75px;
	border-radius : 50%;
}

/* Styles for the login form */
.login-form-container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	transition: display 0.3s ease;
}

.login-form {
	display: flex;
	align-items: flex-start;
}

.login-form .input-group {
	display: flex;
	flex-direction: column;
}

.login-form .input-group input {
	margin-bottom: 10px;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 3px;
	width: 200px; 
	height : 20px;
}

.login-form .button-group {
	display: flex;
	flex-direction: column;
	margin-left: 10px; 
}

.login-form .button-group button {
	margin-bottom: 10px;
	padding: 8px;
	border: none;
	border-radius: 3px;
	background-color: #e74c3c; /* Red color */
	color: white;
	cursor: pointer;
	transition: background-color 0.3s;
	width: 150px; 
	height : 38px;
}

.login-form .button-group button:last-child {
	margin-bottom: 0;
	background-color: #3498db; 
}

.login-form .button-group button:hover {
	background-color: #c0392b; 
}

.login-form .button-group button:last-child:hover {
	background-color: #2980b9; 
}

.login-form .button-group button:last-child.button-disconnect {
	background-color: #e74c3c; 
}

.login-form .button-group button:last-child:hover.button-disconnect {
	background-color: #c0392b; 
}

main {
}

.article-container {
	display : flex;
	flex-direction : column;
	width : 100%;
	background-color : #f5f5f5;
}

.article-content {
	width : 65%;
	margin : auto;
}

.transparent {
	display : flex;
	height : 500px;
	background-color : rgba(0,0,0,0);
}

footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	background-color: #911;
	color: white;
	padding : 4em;
	font-size : 1.2em;
}

footer img {
	width : 200px;
}

footer a {
	color : white;
}

footer a:hover {
	color: #FFD700;
	transition: color 0.3s;
}

#footer_1, #footer_2, #footer_3 {
	text-align : center;
}

.hidden-data {
	display : none;
}


[data-tooltip]:hover::after {
	display: block;
	position: absolute;
	content: attr(data-tooltip);
	border: 1px solid black;
	background: #eee;
	padding: .25em;
	margin-top : -90px;
	margin-left : -10px;
}


#reglement {
	margin-top : 5em;
	margin-bottom : 10em;
}

#contact-cont {
	margin-bottom : 5em;
	margin-top : 5em;
}

/* Responsive styles */
@media (max-width: 950px) {
	body {
		background-image : none;
	}
	.transparent {
		background-image : url("../images/assets/fresque.jpg");
		background-repeat : no-repeat;
		background-position : -200px 0px;
		background-size : 200%;

		display : flex;
		height : 500px;
		background-color : rgba(0,0,0,0);
	}

	header {
		flex-direction: column;
		align-items: center;
	}
	.header-logo-title-container {
		flex-direction : column;
		align-items : center;
	}
	.header-logo-container{
		align-items : center;
		margin : 0;
	}
	.header-title-container {
		align-items : 0;
		text-align : center;
	}
	.nav-menu {
		margin-top : 2em;
		flex-direction : column;
	}
	.nav-menu ul {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.nav-menu li {
		margin-right: 0;
		margin-bottom: 10px;
		width: 100%;
	}

	.nav-menu a {
		font-size: 1em;
	}

	.login-form {
		flex-direction: column;
		align-items: center;
	}

	.input-group {
		width: 100%; 
		align-items: center;
	}

	.input-group input {
		width: 90%; 
	}

	.button-group {
		flex-direction: row;
		width: 100%; 
		justify-content: space-between;
		margin-left: 0; 
	}

	.button-group button {
		width: 48%; 
		margin-bottom: 0;
	}


	.logo-container {
		justify-content: center;
		width: 100%;
		margin-bottom: 10px;
	}
	.dropdown-menu-container {
		max-height : 0;
		flex-direction : column;
	}

	.menu-icon {
		display: flex;
		margin-right: auto;
	}

	.login-form-container {
		justify-content: center;
		width: 100%;
		margin-top: 10px;
	}

	.login-form .input-group input,
	.login-form .button-group button {
		width: 100%;
	}

	.nav-menu img {
		width: 50px;
		height: 50px;
	}

	footer {
		flex-direction : column;
		gap : 2em;
	}
}


