main {
	padding: 0;
	z-index : 100;
}

head {
}

#background-picture {
	width : 100%;
	height : 500px;
	margin : 0;
	z-index : -99;
	overflow : hidden;
}

#background-picture img {
	position : relative;
	z-index : -100;
	transform : translate(-100px, -250px);
}




#presentation {
	display : flex;
	flex-direction : column;
}

#presentation h2 {
	color : var(--color-primary);
}


#presentation-first {
	display : flex;
	margin : auto;
	margin-bottom : 3em;
	width : 100%;
	flex-direction : column;
}
#presentation-first p {
	color: var(--color-text);
	font-size : 1.2em;
	text-align : justify;
	line-height : 1.5em;
	width: 50%;
	margin : auto;
}

#presentation-first h1 {
	margin-left : 20%;
}

#presentation-first button {
	margin: 1rem 0rem auto 60%;
}

#presentation-events {
	width : 100%;
	margin : auto;
	margin-bottom : 5rem;
}

#presentation-events h2 {
	margin-left : 20%;
}

#presentation-events .event-options {
	display: none;
}

.button-group {
	display: flex;
	flex-direction : row;
	gap: 1rem;

	margin-top : 1rem;
}
.event_admin_action {
	width: 100%;
	height: 100%;
	max-height: 2rem;

	border: 1px solid var(--color-cta-secondary);
	border-radius: 5px;

	text-align: center;
	align-content: center;
	color: var(--color-cta-secondary);
	background-color: var(--color-cta-secondary-bg-hover);

	cursor: pointer;
	text-decoration : none;

	transition : background-color 0.3s;

}
.event_admin_action:hover {
	background-color : var(--color-cta-secondary-bg-hover);
	border-color: var(--color-cta-secondary-hover);
	color: var(--color-cta-secondary-hover);
}

.modify_button {
	background-color : var(--color-cta-primary) !important;
	color: var(--color-white);
	border-color: var(--color-cta-primary);
}
.modify_button:hover {
	background-color : var(--color-cta-primary-hover) !important;
	border-color: var(--color-cta-primary-hover);
}


#view_event_btn {
	margin-top : 2rem;
	justify-content: right;
	margin-left: auto;
	margin-right: 0;

}


/* Responsiveness for smaller screens */
@media (max-width: 992px) {
	#presentation-first {
		width : 90%;
	}

	#presentation-first h1 {
		margin-left: 0;
	}

	#presentation-first p {
		width: 100%;
		margin: 0;
	}

	#presentation-first button {
		margin: 1rem 0 0;
		align-self: flex-start;
	}

	#presentation-events {
		width : 100%;
	}


	#background-picture img {
		transform : translate(-600px, -250px);
	}

	#presentation h2 {
		width: 90%;
		margin: auto;
		margin-bottom: 1rem;
	}
}

@media (max-width: 600px) {
	#presentation {
		padding: 0 1.25rem;
	}

	#presentation-first {
		width: 100%;
		margin-bottom: 2rem;
	}

	#presentation-first h1 {
		margin-left: 0;
		font-size: 1.6rem;
		line-height: 1.2;
	}

	#presentation-first p {
		font-size: 1.05rem;
		line-height: 1.5;
	}

	#presentation-first button {
		width: 100%;
	}

	#presentation-events h2 {
		margin-left: 0;
	}
}
