:root {
	--background: #130f40;
	--mobile-overlay: rgba(0, 0, 0, 0.5);
	--mobile-nav-background: #130f40;
	--secondary: #0ad7af;
	--color: #ffffff;
	--primary: #ffd329;
	--primary-foreground: #130f40;
	--padding-container: 16px;
}

html,
body {
	overflow-x: hidden;
}

*,
*::before,
*::after {
	cursor:
		url("/public/images/accessories/mouse.png") 16 16,
		auto !important;
}

a,
a:-webkit-any-link,
button,
input,
textarea,
select,
label,
[role="button"],
[onclick] {
	cursor:
		url("/public/images/accessories/mouse.png") 16 16,
		auto !important;
}

* {
	font-family: "Raleway", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: var(--color);
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
	box-sizing: border-box;
}

bold {
	color: inherit;
	font-size: inherit;
	font-weight: 700;
}

.badge {
	background: var(--primary);
	border-radius: 20px;
	color: var(--secondary);
	text-transform: uppercase;
	padding: 12px 24px;
	font-weight: 600;
	width: max-content;
	margin-bottom: 16px;
}

.x-container {
	overflow-x: hidden;
}

.effect-container {
	position: relative;
	overflow-y: visible;
}

.round {
	height: 90vh;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
	position: absolute;
	background-color: var(--secondary);
}

.round.right {
	top: 50%;
	transform: translateY(-50%);
	left: calc(100% - 100px);
	filter: blur(100px);
}

.round.left {
	top: 50%;
	transform: translateY(-50%);
	right: calc(100% - 100px);
	filter: blur(100px);
}

a {
	text-decoration: none;
}

body {
	background-color: var(--background);
}

h1 {
	font-size: 48px;
	font-weight: 800;
	text-align: center;
}

h2 {
	font-size: 36px;
	font-weight: 800;
	text-align: left;
	width: 100%;
	margin-bottom: 20px;
	text-transform: uppercase;
	text-align: center;
}

h3 {
	font-size: 24px;
	font-weight: 600;
}

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(--secondary);
	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;
}

#hero #heart-1 {
	position: absolute;
	width: 250px;
	height: 250px;
	left: -100px;
	top: 50%;
	transform: rotate(-13.54deg);
}

#hero .container {
	position: relative;
}

#hero .container .title-img {
	margin-block: 60px;
	max-width: 60%;
}

#hero .container h1 {
	margin-bottom: 1rem;
}

#hero .container p {
	text-align: center;
}

#timetable {
	padding-top: 140px;
	margin-top: -70px;
	margin-bottom: 100px;
}

#timetable #tv {
	position: absolute;
	top: 200px;
	right: calc(50% - 150px);
	transform: rotate(30deg) translateX(-50%) translateY(10%);
	width: 640px;
	height: 580px;
}

#timetable #heart-break {
	position: absolute;
	bottom: 100px;
	left: calc(100% - 300px);
	transform: rotate(66deg) translateX(-50%);
	width: 190px;
	height: 190px;
}

#timetable #mouse {
	position: absolute;
	bottom: -150px;
	left: calc(100% - 100px);
	width: 220px;
	height: 220px;
}

#timetable .timeline-container {
	padding: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-image: url("/public/images/components/timetable/timetable-container.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	color: var(--background);
}

#timetable .timeline-container .timeline-title {
	padding: 12px 28px;
	background: var(--primary);
}

#timetable .timeline-container .timeline-title h2 {
	margin-bottom: 0;
	font-weight: 900;
}

#timetable .timeline-container > div {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#timetable .timeline-container > div h2 {
	text-transform: capitalize;
	color: var(--background);
}

#timetable .timeline-container .container {
	flex: 1;
	/* width: calc(100% - 2 * var(--padding-container)); */
	align-items: flex-start;
	overflow: hidden;
}

#timetable .timeline-container .container .timeline {
	position: relative;
	margin: 0 auto;
	width: 500px;
	margin-top: 50px;
	z-index: 11;
}

#timetable .timeline-container .container .timeline::after {
	content: "";
	position: absolute;
	width: 1px;
	background-color: var(--background);
	top: 20px;
	bottom: 80px;
	left: 50%;
	margin-left: -3px;
}

#timetable .timeline-container .container .timeline .timeline-item {
	position: relative;
	width: 50%;
	background-color: inherit;
}

#timetable .timeline-container .container .timeline .timeline-item::after {
	content: "";
	position: absolute;
	width: 11px;
	height: 11px;
	right: -4px;
	background-color: var(--background);
	top: 15px;
	border-radius: 50%;
	z-index: 1;
}

#timetable .timeline-container .container .timeline span {
	font-size: 18px;
	font-weight: 700;
	color: var(--background);
}

#timetable .timeline-container .container .timeline h2 {
	font-size: 32px;
	margin-bottom: 0;
	color: var(--background);
}

#timetable .timeline-container .container .timeline p {
	margin-bottom: 0;
	color: var(--background);
}

#timetable .timeline-container .container .timeline .left {
	left: 0;
}

#timetable .timeline-container .container .timeline .left span,
#timetable .timeline-container .container .timeline .left p,
#timetable .timeline-container .container .timeline .left h2 {
	text-align: right;
}

#timetable .timeline-container .container .timeline .right {
	left: 50%;
}

#timetable .timeline-container .container .timeline .right span,
#timetable .timeline-container .container .timeline .right p,
#timetable .timeline-container .container .timeline .right h2 {
	text-align: left;
}

#timetable .timeline-container .container .timeline .right::after {
	left: -8px;
}

#timetable .timeline-container .container .timeline .content {
	position: relative;
	display: flex;
	flex-direction: column;
}

#timetable .timeline-container .container .timeline .left .content {
	padding-right: 32px;
	align-items: flex-end;
}

#timetable .timeline-container .container .timeline .right .content {
	padding-left: 32px;
	align-items: flex-start;
}

#event {
	max-width: 100vw;
	padding-top: 70px;
	margin-top: -70px;
}

#event > .card {
	padding-block: 40px;
	background-color: #ffffff40;
	backdrop-filter: blur(30px);
}

#event .container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 12px;
}

#event .container h2 {
	text-align: left !important;
}

#event .container p {
	text-align: left !important;
}

#event .container > div {
	width: 100%;
}

#event carousel-element {
	z-index: 1;
	position: relative;
}

#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 {
	border-radius: 20px;
	padding: 22px 42px;
	background: #7a78ff;
	transition: background-color 0.3s;
}

#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;
}

#why .round.right {
	bottom: 0;
	transform: translateY(0%);
}

#why #heart-2 {
	position: absolute;
	top: -70px;
	right: calc(100% - 130px);
	width: 150px;
	height: 150px;
}
#why #heart-3 {
	position: absolute;
	bottom: 0px;
	left: calc(100% - 400px);
	transform: rotate(8deg);
	width: 600px;
	height: 600px;
}

#location {
	padding-top: 70px;
	margin-top: -70px;
}

#location > .card {
	padding-block: 40px;
	background-color: #ffffff40;
	backdrop-filter: blur(30px);
}

#location .container location-element {
	width: 100%;
}

#location .container > div {
	width: 100%;
	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);
}

#gallery {
	background-size: cover;
	background-image: url("/public/images/components/slideshow/background.webp");
}

#spark {
	background-image: url("/public/images/spark/background.webp");
}

#spark .container {
	max-width: 640px;
	padding-block: 40px;
}

#spark #heart-4 {
	position: absolute;
	width: 250px;
	height: 250px;
	right: calc(100% - 300px);
	top: 50%;
	transform: rotate(-13.54deg);
}

#spark #heart-break {
	position: absolute;
	bottom: 100px;
	left: calc(100% - 300px);
	width: 190px;
	height: 190px;
}

#spark .container p {
	font-family: "Bebas Neue";
	text-transform: uppercase;
	text-align: left;
	font-size: 32px;
	margin-bottom: 0;
}

#spark .container h4 {
	font-family: "Bebas Neue";
	text-transform: uppercase;
	line-height: 100%;
	text-align: left;
	font-size: 90px;
}

#rules {
	margin-block: 40px;
}

#rules h3 {
	max-width: 480px;
	text-align: center;
	margin-bottom: 20px;
}

#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: 120px;
}

footer .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .container > h3 {
	margin-bottom: 100px;
	text-align: 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 (max-width: 1200px) {
	#timetable #heart-break {
		position: absolute;
		bottom: 100px;
		left: calc(100% - 200px);
		transform: rotate(66deg) translateX(-50%);
		width: 190px;
		height: 190px;
	}

	#why #heart-3 {
		display: none;
	}

	#spark #heart-4 {
		right: 0;
		transform: none;
		top: -50px;
		height: 190px;
		width: 190px;
	}

	#spark #heart-break {
		bottom: 0;
	}

	#spark .container p {
		font-size: 16px;
	}

	#spark .container h4 {
		width: 100%;
		font-size: 44px;
	}
}

@media only screen and (max-width: 992px) {
	#hero #heart-1 {
		position: absolute;
		width: 250px;
		height: 250px;
		left: 0;
		top: 40%;
		transform: rotate(-13.54deg);
	}
}

@media only screen and (max-width: 768px) {
	.round {
		display: none;
	}
	h1 {
		text-align: center;
		font-size: 28px;
	}
	h2 {
		text-align: left;
		font-size: 24px;
		margin-bottom: 0;
	}
	p {
		text-align: center;
		font-size: 12px;
	}
	#hero {
		padding-bottom: 0;
	}
	#hero .container p {
		font-size: 12px;
	}
	#hero .container .title-img {
		max-width: 320px;
	}
	#hero #heart-1 {
		display: none;
	}

	#timetable .timeline-container {
		padding: 20px;
	}

	#timetable .timeline-container .container .timeline {
		width: 300px;
		margin-top: 20px;
		margin-bottom: 0;
	}

	#timetable .timeline-container .container .timeline::after {
		bottom: 16%;
	}

	#timetable .timeline-container .container .timeline h2 {
		font-size: 16px;
	}

	#timetable .timeline-container .container .timeline span {
		font-size: 12px;
		font-weight: 700;
	}

	#timetable {
		padding-top: 350px;
		padding-bottom: 150px;
		margin-bottom: 0px;
	}

	#timetable #tv {
		position: absolute;
		top: 140px;
		right: calc(100% - 250px);
		transform: rotate(0) translateX(0%) translateY(0%);
		width: 320px;
		height: 300px;
	}

	#timetable #heart-break {
		position: absolute;
		bottom: 0px;
		left: calc(100% - 100px);
		transform: rotate(66deg) translateX(-50%);
		width: 160px;
		height: 160px;
	}

	#timetable #mouse {
		display: none;
	}

	#why {
		margin-block: 20px;
	}

	#why h2 {
		max-width: none;
		text-align: left;
	}

	#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;
	}

	#why #heart-2 {
		display: none;
	}

	#spark #heart-4 {
		left: calc(100% - 300px);
	}

	#spark #heart-4 {
		bottom: 0;
		right: 0;
		left: unset;
	}

	#spark #heart-break {
		bottom: 0;
		right: 0;
		left: unset;
	}

	#rule {
		padding-top: 80px;
	}

	#rule .container {
		align-items: stretch;
	}

	#rule .container .card {
		display: flex;
		flex-direction: column;
		background-color: transparent;
		padding: 0;
	}

	footer {
		padding-top: 80px;
	}
	footer h3 {
		font-size: 12px;
	}
	footer .container {
		padding-top: 20px;
	}
}

@media only screen and (max-width: 600px) {
	#timetable #tv {
		top: 70px;
	}
}

@media only screen and (max-width: 500px) {
	#timetable .timeline-container {
		background-image: url("/public/images/components/timetable/timetable-container.svg");
		background-position: center center;
		background-repeat: no-repeat;
		background-size: auto 100%;
	}
	#timetable .timeline-container .container {
		padding: 0px;
	}
	#timetable .timeline-container .container .timeline {
		padding: 0px;
		width: 400px;
	}
}

@media only screen and (max-width: 420px) {
	#timetable .timeline-container {
		background-image: url("/public/images/components/timetable/timetable-container-thin.svg");
		background-position: center center;
		background-repeat: no-repeat;
		background-size: auto 100%;
	}
	#timetable .timeline-container .container .timeline {
		padding: 20px;
		width: 250px;
	}

	#spark #heart-4 {
		top: 0;
		right: 40px;
		height: 120px;
		width: 120px;
	}

	#spark #heart-break {
		top: 0;
		right: 0;
		height: 120px;
		width: 120px;
	}
}

@media only screen and (max-width: 400px) {
}

@media only screen and (min-width: 600px) {
}
