/* Base Reset and Fonts */
* {
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-color: #212529;
	color: #EEE;
}

a {
	color: #EEE;
}

a:hover {
	color: #e00f00;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5, h6 { font-size: 1rem; }

img {
	vertical-align: middle;
	border-radius: 3%;
}

/* Navbar */
.navbar {
	overflow: hidden;
	background-color: #212529;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}

.navbar a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

.navbar a:hover {
	background: #ddd;
	color: black;
}

.main {
	padding: 16px;
	margin-top: 30px;
	height: 1500px;
}

/* Content Container */
.content {
	width: 80%;
	margin: 0 auto;
}

#introSection {
	text-align: center;
}

/* Header styling */
.labels {
	float: right;
	margin: 10px;
	margin-right: 20px;
	background: linear-gradient(to bottom, white, red);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gameTitles {
	background: linear-gradient(to top, white, red);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Team Bio Layout */
.bioRow {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.bioText {
	flex: 1;
	min-width: 200px;
}

.bioImgLeft,
.bioImgRight {
	width: 200px;
	max-width: 200px;
	height: auto;
	border-radius: 3%;
}

.bioImgLeft {
	order: 0;
}

.bioImgRight {
	order: 1;
}

/* Alternating Bio Blocks */
.evenBio {
	text-align: left;
}

.oddBio {
	text-align: right;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
	.bioRow {
		flex-direction: column;
		text-align: center;
	}

	.bioImgLeft,
	.bioImgRight {
		width: 60%;
		max-width: 100%;
		margin: 0 auto 20px auto;
	}

	.bioText {
		text-align: left;
		width: 90%;         /* ✅ Make text span almost full width */
		margin: 0 auto;     /* ✅ Center the text block */
	}

    .labels {
		float: none;
		display: block;
		margin: 0 auto 20px auto;
		text-align: center;
	}
}
