


@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body{
    background-image: url(Assets/WebsiteBG.png);
    padding: 0;
	margin-left: 2em;
	margin-right: 2em;
	font-size: 24px;
}


/* General ^^^^^, Navbar vvvv */

header{
    height:90px;
    position: fixed;
    top:0; left:0; right:0;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 8px 15px #FF0000;
    display:flex;
    align-items:center;
    justify-content: space-between;
    z-index: 1000;
    font-family: 'Russo One', sans-serif;
}

nav {
	position: fixed;
	z-index: 10;
	left: 0;
	right: 0;
	top: 0;
	padding: 0 1%;
	height: 100px;
	background-color: #000000;
}

nav .logo {
	float: left;
	width: 25%;
	height: 100%;
	display: flex;
	align-items: center;
	color: #fff;
}

nav .links {
	float: right;
	padding: 0;
	margin: 0;
	width: 75%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.on{
	color:#FF0000;
}

.off{
	color:white;
}

nav .links li {
	list-style: none;
}
nav .links a {
	display: block;
	padding: 1.03em;
	font-size: 30px;
	text-decoration: none;
}

nav .links a:hover{
    color:#FF0000;
    background-color: #141414;
}


#nav-toggle {
	position: absolute;
	top: -100px;
}
nav .icon-burger {
	display: none;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}
nav .icon-burger .line {
	width: 30px;
	height: 5px;
	background-color: #fff;
	margin: 5px;
	border-radius: 3px;
	transition: all .3s ease-in-out;
}
@media screen and (max-width: 970px) {
	nav .logo {
		float: none;
		width: auto;
		justify-content: center;
	}
	nav .links {
		float: none;
		position: fixed;
		z-index: 9;
		left: 0;
		right: 0;
		top: 100px;
		bottom: 100%;
		width: auto;
		height: auto;
		flex-direction: column;
		justify-content: space-evenly;
		background-color: rgb(0, 0, 0);
		overflow: hidden;
		box-sizing: border-box;
		transition: all .5s ease-in-out;
	}
	nav .links a {
		font-size: 20px;
	}
	nav .links a:hover{
		color:#FF0000;;
		background-color: #14141400;
	}
	nav :checked ~ .links {
		bottom: 0;
	}
	nav .icon-burger {
		display: block;
	}
	nav :checked ~ .icon-burger .line:nth-child(1) {
		transform: translateY(10px) rotate(225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(3) {
		transform: translateY(-10px) rotate(-225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(2) {
		opacity: 0;
	}
	
}


.Cover{
    background-color: rgb(95, 95, 95);
    top:0px;
    left:0px;
    right:0px;
    height:92px;
}


/* Nav bar ^^^^^,  image slider vvvvv* */

.infos{
    text-align: center;
    color: #ffffff; 
    font-family:system-ui, 'Segoe UI', Roboto, sans-serif; 
    font-size: 26px; 
    font-weight: 600; 
    line-height: 48px;
    margin-top:160px;
    margin-bottom:70px;
}

.PicGrid {
    display: grid;
    grid-template-columns: 1fr; /* Keeps it as a single column */
    justify-content: center; /* Centers the grid horizontally */
    margin: 0 auto; /* Ensures the grid itself is centered in its container */
    width: 70vw; /* Matches the width of the .pic class for consistency */
}

.pic{
    position:relative;
    width:70vw;
}