@font-face {
	font-family: 'Caveat Brush';
	src: url('../assets/fonts/CaveatBrush-Regular.ttf');
}
@font-face {
	font-family: Lora;
	src: url('../assets/fonts/Lora-Regular.ttf');
}
@font-face {
	font-family: 'Uncial Antiqua';
	src: url('../assets/fonts/UncialAntiqua-Regular.ttf');
}
@font-face {
	font-family: 'Work Sans';
	src: url('../assets/fonts/WorkSans-VariableFont_wght.ttf');
}
@font-face {
	font-family: Macondo;
	src: url('../assets/fonts/Macondo-Regular.ttf');
}
*,
::after,
::before {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	background-color: #291f1f;
	color: #fcf8f6;
	font-family: 'Work Sans', sans-serif;
}
button {
	font-family: Lora, sans-serif;
}
::-moz-selection {
	color: #fff;
	background-color: #9e6223;
}
::selection {
	color: #fff;
	background-color: #9e6223;
}
.no-scroll {
	position: fixed;
	width: 100%;
	overflow: hidden;
}
.wrapper,
.wrapper2 {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
.wrapper {
	max-width: 1400px;
}
.wrapper2 {
	max-width: 1600px;
}
.title {
	margin: 0.3em 0.2em 0.5em;
	font-family: 'Uncial Antiqua';
	font-size: 2.5rem;
	text-transform: uppercase;
}
section {
	scroll-margin-top: 90px;
}
.nav {
	position: sticky;
	top: 0;
	display: flex;
	width: 100%;
	height: 70px;
	background-color: #160f0c;
	border-bottom: 2px solid rgba(97, 51, 13, 0.718);
	z-index: 11;
	font-family: Lora;
}
.nav .nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1em;
	z-index: 11;
}
.nav .nav-container .nav-left {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.nav .nav-container .logo {
	display: flex;
	align-items: center;
	height: 7rem;
}
.nav .nav-container .logo img {
	display: block;
	height: 100%;
	width: auto;
}
.nav .nav-container .studio-name {
	display: inline-block;
	margin-right: 10px;
	font-size: 1.7rem;
	font-weight: 400;
	text-align: right;
	color: #fcf8f6;
}
.nav .nav-container .studio-name .boat {
	color: #e44d4d;
}
.nav .nav-container .nav-desktop {
	display: none;
}
.nav .burger-btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 6em;
	height: 100%;
	padding: 1em;
	background-color: transparent;
	border: 1px solid transparent;
	cursor: pointer;
}
.nav .burger-btn svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	height: auto;
	fill: rgb(252, 248, 246);
	transition: fill 0.3s;
}
.community-section .box .social-logos a:active,
.nav .burger-btn svg:hover {
	fill: rgb(228, 77, 77);
}
.nav .nav-mobile {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	background:
		radial-gradient(circle at 20% 30%, rgba(100, 19, 31, 0.2509803922) 0, transparent 60%),
		radial-gradient(circle at 80% 70%, rgba(192, 123, 61, 0.1882352941) 0, transparent 60%), #1e1e1e;
	transform: translateY(-100%);
	z-index: 10;
}
.nav .nav-mobile--active {
	transform: translateY(0);
	overflow: hidden;
}
.nav .nav-mobile--animated {
	transition: transform 0.6s;
}
.nav .nav-mobile a {
	margin: 1em;
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	color: #fcf8f6;
	transition:
		color 0.2s,
		scale 0.2s;
}
.nav .nav-mobile a:hover {
	color: #e44d4d;
	scale: 1.1;
}
.nav .nav-mobile .buy-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5em 2em;
	font-size: 1.8rem;
	text-decoration: none;
	font-weight: 700;
	color: #000;
	border-radius: 5px;
	background: #a09393;
}
.nav .nav-mobile .buy-btn svg {
	max-height: 40px;
	max-width: 40px;
	padding-right: 10px;
}
.nav .nav-mobile .buy-btn svg use {
	width: 40px;
	height: 40px;
}
.header-section {
	min-height: 200px;
	background-image:
		linear-gradient(
			0deg,
			#160f0c 0,
			rgba(22, 15, 12, 0.65) 25%,
			rgba(22, 15, 12, 0.52) 50%,
			rgba(22, 15, 12, 0.65) 75%,
			#160f0c 100%
		),
		-webkit-image-set(
				url('../assets/img/about-bcg.webp') type('image/webp'),
				url('../assets/img/about-bcg.png') type('image/png')
			);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.about-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1em;
	padding: 2em;
	background-color: #1f1612;
	color: #fcf8f6;
}
.about-section__info {
	text-align: justify;
	margin: 0 1em;
	font-size: 1.5rem;
	line-height: 1.4;
}
.about-section__text {
	margin-bottom: 10px;
	font-size: 90%;
}
.games-section {
	background:
		url('../assets/img/coffee-beans.png') fixed,
		radial-gradient(circle at 20% 30%, rgba(100, 19, 31, 0.2509803922) 0, transparent 60%) fixed,
		radial-gradient(circle at 80% 70%, rgba(192, 123, 61, 0.1882352941) 0, transparent 60%) fixed,
		fixed #1e1e1e;
}
.games-section .container {
	padding: 2em 1em;
}
.games-section .container img {
	width: 100%;
	height: auto;
	display: block;
}
.games-section .container .block {
	display: grid;
}
.games-section .container .block .box,
.games-section .container .block .col .text {
	font-size: 1.8rem;
	line-height: 1.5;
	text-align: center;
}
.games-section .container .block .col {
	position: relative;
	display: inline-block;
	margin: 0.6em;
}
.games-section .container .block .col .text {
	position: relative;
	width: 100%;
	font-family: 'Caveat Brush';
}
.games-section .container .block1 {
	margin: 0.5em;
}
.games-section .container .block1 .infusion-title {
	font-family: 'Uncial Antiqua';
	font-size: 3rem;
	text-align: center;
}
.games-section .container .block1 .image {
	display: flex;
	justify-content: center;
	padding: 1em;
}
.games-section .container .block1 .image img {
	order: 1;
	max-width: 180px;
}
.games-section .container .infusion-text {
	position: relative;
	left: 50%;
	transform: translate(-50%);
	max-width: 1200px;
	padding: 1em;
	font-size: 1.5rem;
	text-align: center;
	line-height: 1.4;
}
.games-section .container .block2,
.games-section .container .block3,
.games-section .container .block4 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.community-section {
	background-color: #1f1612;
	display: flex;
	flex-wrap: wrap;
	padding: 2em 0;
}
.community-section .container {
	justify-content: center;
	padding: 2em;
	fill: rgb(252, 248, 246);
}
.community-section .box .tagline {
	font-size: 1.5rem;
	text-transform: uppercase;
	color: #e44d4d;
}
.community-section .box .info {
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 1em;
}
.community-section .box .social-logos a svg {
	width: 4.5rem;
	height: 4.5rem;
	margin: 1em;
	fill: #fff;
}
.community-section .box .social-logos .steam-soon-icon {
	position: relative;
}
.community-section .box .social-logos .steam-soon-icon svg,
.community-section .box .social-logos .steam-soon-icon:active {
	fill: grey;
}
.community-section .box .social-logos .soon {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-55%);
	color: grey;
}
.creators-section {
	background-image: repeating-radial-gradient(rgba(0, 0, 0, 0) 0 12%, rgba(37, 30, 21, 0.5411764706) 13% 26%);
	background-size: 90px 90px;
}
.creators-section h2 {
	text-align: center;
	padding-top: 1em;
}
.creators-section .cards {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}
.creators-section .cards .card {
	position: relative;
	overflow: visible;
	width: 77%;
	min-height: 100%;
	margin: 5em;
	padding: 80px 20px 30px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0) 0, #423636 85%);
	border-radius: 5px;
	text-align: center;
	z-index: 2;
}
.creators-section .cards .card h3 {
	margin: 0.5em;
	font-size: 1.5rem;
}
.creators-section .cards .card h4 {
	margin-bottom: 0.5em;
	font-size: 1.3rem;
	color: #e44d4d;
}
.creators-section .cards .card p {
	line-height: 1.4;
	font-size: 1.1rem;
	text-align: justify;
}
.creators-section .cards .card .divider {
	text-align: center;
	padding: 5px;
}
.creators-section .cards .card .fav-games {
	position: relative;
	display: block;
	font-weight: 700;
}
.creators-section .cards .card img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 2px solid #423636;
}
.footer {
	padding: 3em;
	background-color: #160f0c;
	border-top: 2px solid rgba(97, 51, 13, 0.718);
	font-size: 1.1rem;
	text-align: center;
}
.footer__author a {
	text-decoration: none;
	color: #fcf8f6;
}
.footer__author a:hover {
	color: #c68b3b;
}
@media (width >= 480px) {
	html {
		font-size: 62.5%;
	}
	.header-section {
		min-height: 270px;
	}
}
@media (width >= 600px) {
	.games-section .container .block .image {
		padding: 0;
	}
	.games-section .container .block .col .text {
		position: absolute;
		padding: 0.3em;
		background-color: rgba(31, 22, 18, 0.8078431373);
	}
	.games-section .container .block1 {
		grid-template-columns: 1fr 1fr;
	}
	.games-section .container .block1 .box .image {
		display: flex;
		justify-content: end;
		margin-right: 20px;
	}
	.games-section .container .block1 .box .image img {
		min-width: 28%;
	}
	.games-section .container .block1 .infusion-title {
		margin-top: 1.5em;
		font-size: 4.8rem;
		text-align: left;
	}
}
@media (width >= 855px) {
	html {
		font-size: 68.75%;
	}
	.nav {
		height: 95px;
	}
	.nav .nav-container .nav-desktop {
		display: flex;
		justify-content: space-around;
		align-items: center;
		gap: 2em;
		text-transform: uppercase;
	}
	.nav .nav-container .nav-desktop__link {
		text-decoration: none;
		font-weight: 500;
		font-size: 1.5rem;
		color: #fff;
		transition: color 0.3s;
	}
	.nav .nav-container .nav-desktop__link--active,
	.nav .nav-container .nav-desktop__link:hover {
		color: #e44d4d;
	}
	.nav .nav-container .nav-desktop__buy-btn {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0.5em 2em;
		font-size: 1.2rem;
		text-decoration: none;
		font-weight: 700;
		color: #000;
		border-radius: 5px;
		transition: background-position 3s;
		background-color: grey;
		cursor: default;
	}
	.nav .nav-container .nav-desktop__buy-btn svg {
		max-height: 40px;
		max-width: 40px;
		padding-right: 10px;
	}
	.nav .burger-btn,
	.nav .nav-mobile {
		display: none;
	}
	.header-section {
		min-height: 400px;
	}
	.games-section .container .block2,
	.games-section .container .block3,
	.games-section .container .block4 {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
	.community-section .container {
		display: flex;
	}
	.community-section .container .box {
		margin: 0 1em;
	}
	.community-section .container .box .social-logos a svg {
		transition: scale 0.3s;
	}
	.community-section .container .box .social-logos a:hover svg {
		fill: rgb(228, 77, 77);
		scale: 1.1;
	}
	.community-section .container .box .social-logos .steam-soon-icon:hover svg {
		fill: grey;
		scale: none;
	}
	.creators-section .cards {
		flex-direction: row;
		justify-content: center;
		align-items: stretch;
		margin-top: 5em;
	}
	.creators-section .cards .card {
		display: flex;
		flex-direction: column;
		margin: 2em;
	}
	.creators-section .cards .card__bottom {
		margin-top: auto;
	}
}
@media (width >= 992px) {
	html {
		font-size: 75%;
	}
}
@media (width >= 1200px) {
	html {
		font-size: 80%;
	}
	.community-section .container .box .social-logos a svg {
		margin: 1em 2em;
	}
}
@media (width >= 1600px) {
	html {
		font-size: 86.5%;
	}
}
