@charset "UTF-8";

h1,
h2,
#homepage-imgs {
	text-align: center;
	font-size: 1.8em;
	margin-left: auto;
	margin-right: auto;
	font-family: "Electrolize";
	font-weight: 100;
}

h1 {
	color: #FFD700;
	font-size: 2.5em;
}

summary {
	text-align: center;
	font-size: 1.8em;
}

html {
	background-color: #1E1E1E;
}

p {
	font-size: 1.3em;
	color: #E0E0E0;
	font-family: "Newsreader";
	font-weight: 400;
	font-style: normal;
}

.left {
	float: left;
	margin: 8px;
}

.right {
	float: right;
	margin: 8px;
}

#img {
	width: 8.5%;
}

#img2 {
	width: 9%;
}

/* Nav design uses ideas from W3 Schools Nav Bar: https://www.w3schools.com/css/css_navbar_horizontal.asp */
nav {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -8px;
	margin-left: -8px;
	margin-right: -8px;
	background-color: #252526;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0px;
	flex-wrap: nowrap;
}

.nav-list li a {
	transition: all 0.65s cubic-bezier(0.4, 0.6, 0.2, 1);
	display: block;
	color: #E0E0E0;
	text-align: center;
	padding: 12px clamp(2px, 1vw, 18px);
	text-decoration: none;
	font-size: 17px;
	position: relative;
	font-weight: 500;
}

/* This idea for this animation comes from Anshu Adiga's Website: https://users.wpi.edu/~aadiga/  */
.nav-list li a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #FFD700, #FFA500);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 1s cubic-bezier(0.4, 0.6, 0.2, 1);
}

.nav-list li a:hover {
	background-color: #3C3C3C;
	color: #FFD700;
	transform: translateY(-5px);
	box-shadow: 0 4px 55px rgba(255, 215, 0, 0.3);
}

.nav-list li a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

/*This code comes from: https://codepen.io/snorkltv/pen/azOmvxL */
.nav-link {
	display: inline-block;
	position: relative;
	overflow: hidden;
	line-height: 1.5;
	top: -6px;
}

details,
.page-text {
	border: 1px solid #FFD700;
	background-color: #2D2D30;
	border-radius: 4px;
	padding: 0.5em 0.5em 0;
	margin-top: 25px;
	margin-bottom: 25px;
	padding: 10px;
	box-shadow: 0 4px 55px rgba(79, 75, 53, 0.607);
}

p {
	word-break: normal;
	hyphens: none;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

details.left {
	width: 60%;
	float: left;
}

details.right {
	width: 60%;
	float: right;
}

summary {
	font-weight: bold;
	margin: -0.5em -0.5em 0;
	padding: 0.5em;
	color: #E0E0E0;
}

details[open] {
	padding: 0.5em;
}

.headerBg {
	width: 110%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

iframe {
	border: 1px solid #FFD700;
	border-radius: 10px;
	width: 200px;
	height: 200px;
}

#homeText {
	display: inline-block;
	width: 80%;
	margin: 10px;
}

div.page-text {
	padding: 10px;
}

div.page-text img {
	border-radius: 10px;
}

#traits {
	position: relative;
	display: table;
	margin: 0 auto;
	text-align: center;
	height: 60px;
}

#traits::after {
	content: "";
	position: absolute;
	top: 0;
	right: -8px;
	width: 3px;
	height: calc(100% - 15px);
	background-color: #FFD700;
	animation: blink 0.75s infinite;
}

@keyframes blink {
	0% {
		background-color: transparent;
	}

	50% {
		background-color: #FFD700;
	}

	100% {
		background-color: transparent;
	}
}

.carousel {
	width: 100%;
	max-width: 500px;
	overflow: hidden;
	margin: 25px;
}

.slides {
	display: flex;
	transition: transform 0.5s ease;
}

.slides img {
	width: 50%;
	height: auto;
	flex-shrink: 0;
}

/*Source: https://codepen.io/rperry1886/pen/OJPQxza */

.multi-button {
	filter: drop-shadow(3px 10px 15px rgba(0, 0, 0, 0.45));
	text-align: center;
}

.multi-button button {
	height: 60px;
	width: 110px;
	background: linear-gradient(to bottom, rgb(50, 50, 54), #201e20);
	margin: -5px;
	border: none;
	color: white;
	font-size: 1.2em;
}

.multi-button :nth-child(1) {
	border-radius: 20px 0 0 20px;
}

.multi-button :nth-child(2) {
	border-radius: 0 20px 20px 0;
}

#prev:hover {
	cursor: pointer;
	filter: drop-shadow(-5px 0px 5px rgba(144, 158, 74, 0.85));
}

#next:hover {
	cursor: pointer;
	filter: drop-shadow(5px 0px 5px rgba(144, 158, 74, 0.85));
}

button:active {
	transform: scale(.9);
}

a {
	color: #FFD700;
}

a:visited {
	color: #FFA500;
}

a:hover {
	color: #ff6f00;
}

.carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
	padding: 0 20px;
}

.indicator {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #555;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.indicator:hover {
	background-color: #888;
	transform: scale(1.1);
}

.indicator.active {
	background-color: #ffd700;
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
	transform: scale(1.2);
}