* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #0b0b0b;
	color: #f4f4f4;
	font-family: Arial, Helvetica, sans-serif;
	min-height: 100vh;
}

/* ===== Links ===== */
a {
	color: #ffaa33;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* ===== Header ===== */
.header-container {
	background: #121212;
	border-bottom: 2px solid #ffaa33;
	padding: 1rem 0.5rem 0.75rem 0.5rem;
	text-align: center;
}

.header-title {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	color: #ffffff;
}

/* ===== Social Icons ===== */
.header-social-row {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.header-icon {
	width: 32px;
	height: 32px;
	image-rendering: auto;
}

/* ===== Navigation ===== */
.header-nav-row {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.nav-button {
	display: inline-block;
	padding: 0.4rem 0.8rem;
	border: 1px solid #ffaa33;
	border-radius: 6px;
	color: #ffaa33;
	font-weight: bold;
	transition: background 0.15s ease, color 0.15s ease;
}

.nav-button:hover {
	background: #ffaa33;
	color: #000000;
	text-decoration: none;
}

.nav-button.active {
	background: #ffaa33;
	color: #000000;
}

/* ===== Page Content ===== */
.page-container {
	max-width: 1100px;
	margin: 2rem auto;
	padding: 1rem;
}

/* ===== Hero / Homepage ===== */
.hero-wrapper {
	text-align: center;
	margin-top: 3rem;
}

.hero-avatar-container {
	width: 240px;
	height: 240px;
	margin: 0 auto 1rem auto;
}

.hero-avatar-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero-subtext {
	color: #ffaa33;
	font-size: 1.1rem;
	margin-top: 0.5rem;
}

/* ===== Utility ===== */
.hidden {
	display: none;
}
