/* 
light: #FDFCF4
blue: #ABC2F0
pink: #EAA7CB
purple: #BE9CE2
dark: #444444
*/

.root {
	color: black;

	>div:first-child {
		padding-left: 12px;
		padding-right: 12px;
	}

	>div:not(.noGutters) {
		padding-left: 7%;
		padding-right: 7%;
	}
}

a {
	color: black;
	text-decoration: none;
}

a:hover {
	color: #EAA7CB;
}

.focused {
	color: #EAA7CB;
}


button {
	background-color: white;
	border: none;
	color: black;
	padding: 10px 42px;
	margin-right: 15px;
	margin-bottom: 10px;
	text-align: center;
	text-decoration: none;
	/* display: inline-block; */
	font-size: 16px;
	transition-duration: 0.25s;

	height: 50px;
	border-radius: 25px;
	font-family: "Figtree", sans-serif;
	font-weight: bold;
	text-transform: uppercase;
}

button:hover {
	color: #EAA7CB;
}

.buttonWithBackground {
	background-color: #EAA7CB;
}

.buttonWithBackground:hover {
	color: #EAA7CB;
	background-color: white;
}

.buttonWithBackgroundBlue {
	background-color: #ABC2F0;
}

.buttonWithBackgroundBlue:hover {
	color: #ABC2F0;
	background-color: white;
}

.buttonWithBackgroundPurple {
	background-color: #BE9CE2;
}

.buttonWithBackgroundPurple:hover {
	color: #BE9CE2;
	background-color: white;
}

.buttonWithBackgroundWhite {
	background-color: white;
}

.buttonWithBackgroundWhite:hover {
	color: white;
	background-color: #EAA7CB;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	padding: 12px 16px;
	z-index: 1;

	/* > p {
		margin-top: 16px;
	} */

	/* *:last-child { */
	border-radius: 10px;
	/* } */
}

.dropdown:hover {
	>p {
		color: #EAA7CB;
	}
}

.dropdown:hover {
	.dropdown-content {
		display: block;
	}

	.dropdown-content>*:hover {
		color: #EAA7CB;
	}
}

.logo {
	font-family: "Gamja Flower", serif;
	font-size: 32px;
	padding-left: 10px;
}

h1 {
	font-family: "Figtree", sans-serif;
	font-size: 64px;
	font-weight: bold;
}

h2 {
	font-family: "Figtree", sans-serif;
	font-size: 48px;
	font-weight: bold;
}

h3 {
	font-family: "Figtree", sans-serif;
	font-size: 20px;
	font-weight: bold;
}

p,
a {
	font-family: "Jost", sans-serif;
	font-size: 20px;
}

p .small,
a .small {
	font-family: "Jost", sans-serif;
	font-size: 18px;
}

.centered {
	display: flex;
	justify-content: center;
	align-items: center;
}

.verticallyCentered {
	margin-top: auto;
	margin-bottom: auto;
}

.waiterExtraGuttersPlease {
	padding-left: 7%;
	padding-right: 7%;
}

.ribbon {
	height: 100px;
	margin-top: 10px;
}

.ribbonLeft {
	display: flex;
	text-align: left;
}

.ribbonCenter {
	font-weight: bold;
	text-align: center;

	>* {
		/* margin-left: 20px; */
		margin: auto;
		padding-left: 10px;
		padding-right: 10px;
	}
}

.ribbonRight {
	text-align: right;

	a {
		padding: 5px;
	}

	img {
		max-width: 64px;
		max-height: 64px;
	}
}

.upcomingGame {
	height: 810px;
	background-image: url("../img/Games/OVH/OVHBannerNoTitle.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #444444;
	background-position: center;

	.upcomingGameDesc {
		>* {
			padding: 10px;
		}

		background-color: rgba(255, 255, 255, 0.85);
		border-radius: 25px;
		padding: 15px;
	}
}

@media (max-width: 720px) {
	.upcomingGame {
		background-image: url("../img/Games/OVH/OVHBannerVerticalNoTitle.png");
	}
}

.aboutTheStudio {
	/* height: 460px; */
	padding-top: 75px;
	padding-bottom: 75px;
	color: white;
	background-image: linear-gradient(to right, #ABC2F0, #7C8BEC);

	.aboutTheStudioBody {
		margin-left: 20px;

		>* {
			margin-bottom: 25px;
		}
	}
}

.ourGames {
	/* height: 1340px; */
	padding-top: 30px;

	img {
		border: solid black 4px;
		box-shadow: 5px 5px black;
	}

	h2 {
		margin-bottom: 15px;
	}

	> :first-child {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.gameDescContainer {
		margin-left: 10px;
		margin-top: 20px;
	}

	.ourGamesGame {
		margin-bottom: 60px;

		.heroImg {
			text-align: center;
		}
	}

	.moreToCome {
		margin-bottom: 60px;
		margin-top: 30px;
		text-align: left;
	}
}

.footer {
	height: 270px;
	background-color: black;
	color: white;

	.firstFooterRow {
		padding-top: 50px;

		a,
		p {
			font-family: "Figtree", sans-serif;
			font-weight: bold;
		}
	}

	.bottomBorder {
		padding-bottom: 60px;
		height: 50px;
		border-bottom: solid white 1px;
	}

	.footerLeft {
		text-align: left;

		>* {
			margin-right: 20px;
		}
	}

	.footerRight {
		text-align: right;

		>* {
			margin-left: 10px;
		}
	}

	.footerRow {
		margin-top: 25px;
	}

	.aUnderlined {
		text-decoration: underline;
	}

	a {
		color: white;
	}

	a:hover {
		color: #EAA7CB;
	}
}

.gameFocusPage {
	.gameTextDesc {}

	.praise {
		background-color: #EAA7CB;

		> :first-child {
			margin-bottom: 20px;
		}

		.underline {
			text-decoration: underline;
		}
	}

	.mediaGallery {
		.row>* {
			margin-bottom: 25px;
		}
	}

	>div {
		padding-top: 60px;
		padding-bottom: 50px;
	}
}

.bigImage {
	height: 600px;
	background-image: url("../img/Games/OVH/OVHBannerWide.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #444444;
	background-position: center;
}

@media (max-width: 720px) {
	.bigImage {
		background-image: url("../img/Games/OVH/OVHBannerVertical.png");
	}
}

.aboutPage {
	padding-top: 150px;
	padding-bottom: 150px;

	.studioHeroImg {
		max-width: 256px;
		transform: rotate(10deg);
		margin-left: auto;
		margin-right: auto;
	}

	.aboutHeader {
		margin-bottom: 20px;
	}
}

.blogPage {
	padding-top: 150px;
	padding-bottom: 150px;

	.blogHeader {
		margin-bottom: 40px;
	}

	.blogPost {
		margin-bottom: 24px;
		border: 2px solid #EAA7CB;
		border-radius: 12px;
		overflow: hidden;

		.blogPostHeader {
			display: flex;
			align-items: center;
			padding: 16px 20px;
			background-color: #f0f4f9;
			/* 7C8BEC */
			cursor: pointer;

			h2 {
				font-size: 24px;
				margin: 0;
				flex: 1;
			}

			.blogPostDate {
				margin: 0 16px 0 0;
				font-size: 16px;
				color: #666666;
				white-space: nowrap;
			}

			.blogExpandIcon {
				font-size: 24px;
				font-weight: bold;
				color: #EAA7CB;
				transition: transform 0.2s ease;
			}
		}

		.blogPostHeader[aria-expanded="true"] .blogExpandIcon {
			transform: rotate(45deg);
		}

		.blogPostHeader:hover {
			background-color: #e7f2ff;
		}

		.blogPostBody {
			padding: 16px 20px;
			border-top: 1px solid #EAA7CB;

			p {
				margin-bottom: 12px;
			}
		}
	}
}

.pressPage {
	padding-top: 50px;
	padding-bottom: 50px;

	> :first-child {
		margin-bottom: 30px;
	}

	>* {
		margin-bottom: 20px;
	}

	.getInTouchEmail {
		margin-top: 30px;
	}

	.gamesSection {
		/* margin-top: 40px; */
	}

	.pressPageGamePreivew {
		margin-right: 20px;

		>* {
			margin-bottom: 20px;
		}
	}
}



/**************** About Page ****************/






/**************** Shapes ****************/

.starContainer {
	position: relative;
	top: 0px;
}

.pinkStar1 {
	position: absolute;
	top: -145px;
}

.whiteStar1 {
	position: absolute;
	top: -10px;
	left: -45px;
}

.blueStar1 {
	position: absolute;
	bottom: -145px;
	right: 0px;
}

.whiteStar2 {
	position: absolute;
	bottom: -10px;
	right: -45px;
}

.gradientStar1 {
	position: absolute;
	top: -140px;
	left: -50px;
	z-index: -1;
}

.gradientStar2 {
	position: absolute;
	bottom: -140px;
	right: -50px;
	z-index: -1;
}

.gradientStar3 {
	position: absolute;
	bottom: -140px;
	right: 160px;
	z-index: -1;
}