@font-face {
	font-family: actionman;
	src: url(actionman.ttf);
}

:root {
	--main-color: #bf7e5b;
}

body {
	font-family: actionman;
	margin: 0;
	background-color: var(--main-color);
	color: #f1dcbd;
	text-shadow: 1px 1px black;
	line-height: 1.6;
}

header {
	background-color: #292b2c;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1em 2em;
	position: sticky;
	top: 0;
	z-index: 1000;
}

#background-image {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: 100%;
    background-image: url('img1.jpg');
    background-attachment: fixed;
}

.logo {
	font-size: 1.5em;
	font-weight: bold;
	max-width: 256px;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 1em;
	margin: 0;
	padding: 0;
}

nav a {
	color: white;
	text-decoration: none;
}

nav a:hover {
	color: var(--main-color);
	text-decoration: underline;
	transition: color 0.2s;
}

.bg-section {
	margin: 0 auto;
	display: flex;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	color: white;
}

section:not(.bg-section) {
	padding: 4em 0;
	background-color: var(--main-color);
}

.bg-gradient {
	padding: 2em 0;
	background-image: linear-gradient(0deg,rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.0) 100%);;
	margin: auto;
	width:100%;
}

.bg-gradient-reverse {
	padding: 2em 0;
	background-image: linear-gradient(180deg,rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.0) 100%);;
	margin: auto;
	width:100%;
}

#hero {
	background-image: url('img1.jpg');
	text-align: center;
	padding: 5em 0 0 0;
}

#hero h1 {
	font-size: 3.5em;
	margin: 0.5em 0 0.1em 0;
}

#hero p {
	font-size: 1.5em;
}

#schedule {
	text-align: center;
}

#schedule p {
	margin: 0.25em 0;
}

#games {
	background-image: url('img2.jpg');
	padding-bottom: 50px;
}

#game-category-container {
	display: flex;
	justify-content: space-evenly;
    flex-wrap: wrap;
}

.games-category {
	display: grid;
	width: 300px;
	height: 300px;
	grid-template-rows: auto;
	grid-template-columns: auto;
	grid-template-areas: "overlap";
}

.games-category h3 {
	grid-area: overlap;
	z-index: 2;
	pointer-events: none;
	text-shadow: 1px 1px black;
}

#contact {
	background-image: url('img3.jpg');
}

.swiper {
	width: 100%;
	height: 100%;
	
	background-color: #303030CC;
	border: 1px solid #707070;
	border-radius: 5px;
	padding: 2.0em;
	box-shadow: 0 0 5px 2px black;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	width: 100%;
	height: 100%;
	background: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center center;
}

h1 {
	text-align: center;
	font-size: 2.5em;
	margin: 0.5em 0 0.1em 0;
}

h2 {
	text-align: center;
	font-size: 2.2em;
	margin: 0.5em 0 0.1em 0;
}

h3 {
	text-align: center;
	font-size: 1.5em;
	margin: 10px 0 10px 0;
}

p {
	text-align: center;
	font-size: 1.5em;
}

li {
	font-size: 1.2em;
}

footer {
	background-color: #292b2c;
	color: white;
	text-align: center;
	padding: 1em 0;
	font-size: 0.9em;
}



