/* Fonts load from Google Fonts via the <link> injected by press/index.php
   (grimoire_font_head). The --font-* vars below are just pre-injection fallbacks. */
:root {
	/* DEFAULT FONT — overridden per-band by the injected :root in press/index.php */
	font-family: var(--font-body, "Elms Sans", sans-serif);
	font-weight: 800;
	font-style: normal;
	/* Palette fallbacks — overridden per-band by the injected :root in press/index.php. */
	--main-black: #101010;
	--main-white: #f5f5f5;
	--accent:  #890095;
	--accent2: #b20006;
}
.hidden {
	display: none;
	visibility: hidden;
}
body {
	background-color: var(--main-black);

	padding: 0;
	margin: 0;
}

/* MAIN */

main {
	background-color: var(--main-black);
	width: 100%;
	padding-top: 40px;
}
#bio-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#logoFlex {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#logo {
	width: 25%;
}

p {
	text-align: left;
	width: 70%;

	font-weight: 500;
	font-size: 1.25em;
	color: var(--main-white);
}

/* BUTTONS */
#links {
	display: flex;
	flex-direction: column;
	justify-content: center;

	width: 60%;
	margin-top: 25px;
	margin-bottom: 40px;
}
#links a {
	padding: 25px 40px 25px 40px;
	margin-bottom: 25px;
	border: 5px #171717 solid;
	border-radius: 10px;

	text-decoration: unset;
	font-weight: 800;
	font-size: 1.25em;
	color: var(--main-white);
	text-align: center;

	background-color: #171717;
	box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.206);

	transition: all 0.15s ease-in-out;
}
/* The first button is the "fancy" one — same animated accent gradient border
   as the main site's release card, so the two pages feel like one brand. */
#links a:first-child {
	background-image:
		linear-gradient(var(--main-black), var(--main-black)),
		linear-gradient(120deg, var(--accent), var(--accent2), var(--accent), var(--accent2));
	background-size: 100% 100%, 300% 300%;
	background-position: center, 0% 50%;
	background-origin: border-box;
	background-clip: padding-box, border-box;
	border-color: transparent;
	animation: gradientBorder 10s linear infinite;
}
#links a:hover {
	color: var(--accent);
	border-color: var(--accent);
}
#links a:first-child:hover {
	color: var(--main-white);
	border-color: transparent;
	box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.3);
}

/*footer*/
footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 16px;
	margin: 0 20px;
	color: var(--main-white);
}
footer a {
	color: var(--main-white);
	text-decoration: underline;
}
footer a:hover {
	color: var(--accent);
}

/*VIDEOS*/
#movie-page {
	background: radial-gradient(
		circle,
		rgb(101, 190, 218),
		rgb(255, 234, 81),
		#f0944b
	);
	background-size: 1000% 1000%;
	animation: nav-color 60s ease-in-out infinite;
}
#movies {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;

	height: 90vh;
	width: 100vw;

	margin: 0;
	padding: 0;
}
#movies div {
	width: 27%;
}
video {
	width: 100%;
}

/* Media Queries */

@media screen and (max-width: 800px) {
	#logo {
		width: 60%;
	}

	/* Movies */
	#movies {
		flex-direction: column;
	}
	#movies div {
		width: 70%;
	}
}

/* Animated accent gradient border (shared with the main site's release card). */
@keyframes gradientBorder {
	0%   { background-position: center, 0% 50%; }
	50%  { background-position: center, 100% 50%; }
	100% { background-position: center, 0% 50%; }
}

/*SCROLL COLOR*/
@keyframes nav-color {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
