/* Global Styles */
html,
body {
	color: rgb(var(--bs-light-rgb));
	background-color: rgb(var(--bs-body-color-rgb));
	height: 100vh;
	width: 100vw;
	background-image: url("/src/img/background.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position-x: center;
	background-position-y: center;
	-moz-background-clip: padding-box;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background-origin: padding-box;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	background-attachment: fixed;
	overflow-y: scroll;
	overflow-x: hidden;
}

.ingame {
	max-width: 100% !important;
	top: 10px;
	position: absolute;
}

/* Header Styles */
header {
	background-color: #1a3a5a;
	box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.2);
	z-index: 1;
	color: #fff;
}

/* Footer Styles */
footer {
	position: absolute !important;
	bottom: 0 !important;
	width: 100% !important;
	background-color: #333;
	color: #e0e0e0;
	box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

a.active {
	text-decoration: underline;
}

.title-header-nav {
	font-size: xx-large;
}

.nav-scroller {
	position: relative;
	z-index: 2;
	height: 2.75rem;
	overflow-y: hidden;
}

.nav-scroller .nav {
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	text-align: center;
	white-space: nowrap;
	scroll-snap-type: x mandatory;
}

.nav-scroller .nav::-webkit-scrollbar {
	display: none;
}

.traveler-name-branding {
	font-weight: bold;
	color: #ffbb00;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.cat-mention-branding {
	font-weight: bold;
	color: #fc0fc0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.cat-mention-branding-alt {
	font-weight: bold;
	color: #69a344;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.unicorn-mention-branding {
	font-weight: bold;
	color: #ffccff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

a {
	color: #ffbb00;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.about-header {
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.about-header::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #ffbb00;
	opacity: 0.8;
	border-radius: 2px;
}

.card-text {
	margin-bottom: 10px;
}

.game_purchase_price.price {
	color: gold !important;
}

.nav {
	justify-content: center !important;
}

.nav .nav-link {
	font-weight: bold !important;
}

.spacing-10 {
	height: 15vh;
}

.spacing-20 {
	height: 20vh;
}

.spacing-30 {
	height: 30vh;
}

h1,
img.main-logo {
	padding-top: 20px;
}

body>div.container {
	padding-bottom: 20px;
	margin-bottom: 20px;
	bottom: 20px !important;
	position: relative !important;
}

.dynamic-iframe {
	height: 190px;
}

div.main-container {
	margin-top: -20vh;
	padding-bottom: 40px;
}

/* Custom Styles for Mobile View */
@media (max-width: 767px) {
	header .navbar-brand {
		margin-right: auto;
	}

	header .navbar-collapse {
		display: none;
	}

	header .nav {
		justify-content: center;
	}

	header .nav-item {
		margin-bottom: 1rem;
	}

	header .navbar-toggler {
		display: block;
		background-color: #0c88b9;
	}

	/* Correct the collapsed state */
	header .navbar-collapse.show {
		display: flex !important;
	}

	/* Smooth toggle animation */
	.navbar-toggler {
		transition: transform 0.3s ease;
	}

	.footer {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		transition: transform 0.3s ease;
		transform: translateY(0);
	}

	.footer.hidden {
		transform: translateY(100%);
	}
}

/* Custom styles for desktop view */
@media (min-width: 768px) {
	header .navbar {
		justify-content: center;
	}

	header .navbar-brand {
		margin-right: unset;
	}

	header .navbar-collapse {
		display: flex !important;
	}

	header .navbar-toggler {
		display: none;
	}
}
