:root {
	--bg: rgba(19, 15, 64, 1);
	--bg-overlay: rgba(0, 0, 0, 0.5);
	--mobile-nav-bg: rgba(0, 0, 0, 1);
	--secondary: #0ad7af;
	--color: rgba(255, 255, 255, 1);
	--primary: rgba(192, 192, 192, 1);
	--primary-foreground: rgba(19, 15, 64, 1);
	--padding-container: 16px;
}

* {
	font-family: "Raleway", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: var(--color);
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
}

body {
	background-color: var(--bg);
}

h1 {
	font-size: 50px;
	font-weight: 800;
	text-align: center;
}

h2 {
	font-size: 30px;
	font-weight: 800;
	text-align: left;
	width: 100%;
	margin-bottom: 10px;
}

p {
	width: 100%;
	margin-bottom: 20px;
}

.container {
	max-width: 940px;
	margin: auto;
	padding-inline: var(--padding-container);
}

header {
	top: 0;
	left: 0;
	right: 0;
	position: fixed;
	height: 80px;
	width: 100%;
	display: flex;
	justify-content: center;
	background-color: var(--mobile-nav-bg);
	z-index: 20;
}

header .container {
	margin: auto;
	padding-inline: var(--padding-container);
}

header > nav {
	width: 940px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-inline: var(--padding-container);
}

header > nav img.logo {
	width: 92px;
	height: 28px;
}

main section {
	position: relative;
}

main section > .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.linear-top {
	pointer-events: none;
	top: 0;
	z-index: 1;
	position: absolute;
	height: clamp(95px, 7.5vw + 55px, 250px);
	width: 100%;
	background: linear-gradient(var(--bg), transparent);
}

.linear-bottom {
	pointer-events: none;
	bottom: 0;
	position: absolute;
	height: clamp(95px, 7.5vw + 55px, 150px);
	width: 100%;
	background: linear-gradient(transparent, var(--bg));
	z-index: 1;
}

#hero {
	margin-top: 80px;
	background-image: url("/public/images/background/hero.webp");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 100px;
}

#hero .linear-bottom {
	height: 200px;
	background: linear-gradient(180deg, transparent 10%, rgba(19, 15, 64, 0.4) 100%);
}

#hero > .container {
	padding-top: 96px;
}

#hero .container img {
	max-width: 360px;
	margin-bottom: 96px;
}

#hero .container h1 {
	margin-bottom: 1rem;
}

#hero .container p {
	text-align: center;
}

#hero .container h1,
#hero .container p,
#hero .container h2,
#hero .container span {
	color: var(--primary-foreground);
}

#hero .container > div {
	width: 100%;
}

#timetable {
	display: flex;
	flex-direction: row;
	align-items: center;
}

#timetable timetable-element {
	flex: 0 0 60%;
	max-width: 60%;
}

#timetable movie-element {
	flex: 0 0 40%;
	max-width: 40%;
}

#location {
	padding-top: 70px;
	margin-top: -70px;
}

#location .container {
	margin-top: 40px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 12px;
}

#location .container h2 {
	text-align: left !important;
}

#location .container p {
	text-align: left !important;
}

#location .container a {
	border: 2px solid var(--primary);
}

#why {
	margin-block: 40px;
}

#why h2 {
	text-transform: uppercase;
	max-width: 480px;
	text-align: center;
	margin-bottom: 40px;
}

#why .why-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 24px;
}

#why .why-container > div {
	padding: 22px 42px;
	background: #7a78ff;
	transition: background-color 0.3s;
	position: relative;
}

#why .why-container > div img {
	position: absolute;
	right: 0;
	top: 0;
}

#why .why-container span {
	color: #9e9dff;
	font-size: 100px;
	font-weight: 800;
	transition: color 0.3s;
}

#why .why-container > div:hover {
	background: #0ad7af;
}

#why .why-container > div:hover span {
	color: #4af8d6;
}

#why .why-container h3 {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 12px;
}

#why .why-container p {
	text-align: left;
	font-size: 24px;
	font-weight: 300;
}

#gallery {
	max-width: 100vw;
	overflow: hidden;
	padding-top: 70px;
	margin-top: -70px;
}

#gallery .container {
	margin-top: 40px;
	display: flex;
	gap: 12px;
}

#gallery .container > div {
	width: 100%;
}

#event {
	max-width: 100vw;
	overflow: hidden;
	padding-top: 70px;
	margin-top: -70px;
}

#event .container {
	margin-top: 40px;
	flex-direction: column;
}

#event .container > div {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 20px;
}

#event .container h2 {
	text-align: left !important;
}

#event .container p {
	text-align: left !important;
	margin-bottom: 0;
}

#rules {
	margin-block: 40px;
}

#rules h2 {
	max-width: 480px;
	text-align: center;
	margin-bottom: 40px;
}

#rules ul {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#rules ul li {
	text-align: center;
	list-style-position: inside;
}

footer {
	position: relative;
	padding-top: 60px;
}

footer > .tree {
	position: relative;
	overflow: visible;
	background-color: var(--secondary);
}

footer > .tree::after {
	content: "";
	background-color: var(--bg);
	position: absolute;
	height: 100px;
	width: 100%;
	display: block;
	bottom: 0;
}

footer > .tree img {
	width: 100%;
	position: relative;
	top: -80px;
}

footer .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .container > div {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-bottom: 40px;
}

footer .container > div span {
	font-weight: 400;
	text-transform: uppercase;
}

@media only screen and (min-width: 1200px) {
}

@media only screen and (max-width: 992px) {
	#timetable timetable-element {
		flex: 0 0 100%;
		max-width: 100%;
	}

	#timetable movie-element {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	h1 {
		text-align: center;
		font-size: 28px;
	}
	h2 {
		text-align: center;
		font-size: 24px;
		margin-bottom: 4px;
	}
	p {
		text-align: center;
		font-size: 12px;
	}
	#hero {
		padding-bottom: 0;
	}
	#hero .container {
		padding-left: 0;
		padding-right: 0;
	}
	#hero .container img {
		width: 100%;
		margin-bottom: 0;
		box-sizing: border-box;
		padding-left: var(--padding-container);
		padding-right: var(--padding-container);
	}
	#hero .titles {
		box-sizing: border-box;
		padding-left: var(--padding-container);
		padding-right: var(--padding-container);
		padding-top: 50px;
		background: linear-gradient(360deg, var(--bg), transparent);
	}
	#hero .elements {
		background-color: var(--primary-foreground);
		padding-bottom: 20px;
	}

	#hero .container h1,
	#hero .container p,
	#hero .container h2,
	#hero .container span {
		color: var(--color);
	}

	#location .container {
		margin-top: 20px;
	}

	#why {
		margin-block: 20px;
	}

	#why .why-container {
		gap: 12px;
	}

	#why .why-container > div {
		padding: 4px 16px;
	}

	#why .why-container > div img {
		display: none;
	}

	#why .why-container span {
		font-size: 40px;
	}

	#why .why-container h3 {
		font-size: 14px;
		margin-bottom: 4px;
	}

	#why .why-container p {
		font-size: 10px;
	}

	#gallery h2,
	#gallery p {
		text-align: left;
	}

	footer {
		padding-top: 20px;
	}
	footer .container {
		padding-top: 20px;
	}

	footer > .tree::after {
		content: "";
		background-color: var(--bg);
		position: absolute;
		height: 30px;
		width: 100%;
		display: block;
		bottom: 0;
	}

	footer > .tree img {
		width: 100%;
		position: relative;
		top: -20px;
	}
}

@media only screen and (max-width: 600px) {
}

@media only screen and (min-width: 600px) {
}
