@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&family=Jura:wght@300..700&display=swap');

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	background: #121212;
	color: #eee;
	font-family: sans-serif;
	margin: 0;
	text-align: center;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.page-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

h1 {
	font-size: 3rem;
	font-family: "Rock Salt", cursive;
	font-weight: 400;
	color: #39FF14;
}

p {
	color: #aaa;
	margin: 1em 0;
	font-family: "Jura", sans-serif;
	font-weight: 400;
	font-size: 2.5rem;
}

.artstation-blue {
	color: #00bfff;
	text-decoration: none;
	transition: color 0.2s ease, text-shadow 0.2s ease;
}

.artstation-blue:hover {
	color: #33ccff;
	text-shadow: 0 0 12px #00bfff, 0 0 20px #00bfff;
}

.links {
	margin-top: 1em;
	font-size: 1.5rem;
}

.links a {
	color: #39FF14;
	text-decoration: none;
	margin: 0 0.5em;
	font-family: "Jura", sans-serif;
	transition: color 0.2s ease, text-shadow 0.2s ease;
}

.links a:hover {
	color: #69ff64;
	text-shadow: 0 0 6px #39FF14;
	text-decoration: none;
}

.inline-icon {
	height: 18px;
	width: auto;
	vertical-align: middle;
	margin-right: 0.4em;
	transform: translateY(-1px);
	filter: grayscale(100%) brightness(0.9);
	transition: filter 0.2s ease;
}

.links a:hover .inline-icon {
	filter: none;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
}

footer {
	position: sticky;
	bottom: 0;
	background-color: #1e1e1e;
	text-align: center;
	font-family: "Jura", sans-serif;
	padding: 0.5em;
	color: #aaa;
	font-size: 0.85rem;
	width: 100%;
}

.footer-text {
	font-family: "Jura", sans-serif;
	font-size: 0.85rem;
	color: #aaa;
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 0.5em 2em;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-left {
	flex: 1 1 auto;
	text-align: left;
	display: flex;
	align-items: center;
}

.footer-right {
	flex: 1 1 auto;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
}

.footer-icon img.footer-logo {
	height: 24px;
	width: auto;
	display: block;
	transition: transform 0.2s ease, filter 0.2s ease;
	filter: grayscale(100%) brightness(0.8);
}

.footer-icon:hover img.footer-logo {
	transform: scale(1.2);
	filter: none;
}

.cookie-settings-btn {
	background: none;
	border: none;
	color: #aaa;
	font-size: 1rem;
	cursor: pointer;
	padding: 0;
	margin: 0;
	transition: transform 0.2s ease;
}

.cookie-settings-btn:hover {
	color: #39FF14;
	transform: scale(1.1);
}

/* === HEADER STYLES === */
header {
	position: sticky;
	top: 0;
	background-color: #1e1e1e;
	padding: 0.5em 2em;
	z-index: 10;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	width: 100%;
}

.header-content {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2em;
	box-sizing: border-box;
}

.header-left {
	flex: 0 0 auto;
}

.header-center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo-link {
	font-family: "Rock Salt", cursive;
	font-size: 1.5rem;
	text-decoration: none;
	color: transparent;
	white-space: nowrap;
	position: relative;
	user-select: none;
}

.logo-link::before {
	content: "SEEOOW";
	color: #39FF14;
}

.main-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.8em;
	justify-content: center;
	font-size: 1.2rem;
}

.main-nav a,
.main-nav span.separator {
	text-decoration: none;
	color: #eee;
	font-family: "Jura", sans-serif;
}

.main-nav a:hover {
	color: #39FF14;
}

.separator {
	user-select: none;
	font-weight: bold;
	padding: 0 0.3em;
}

/* === Hamburger Button (hidden on desktop) === */
.hamburger {
	display: none;
	font-size: 2rem;
	background: none;
	border: none;
	color: #39FF14;
	cursor: pointer;
}

@media (max-width: 768px) {
	.header-content {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.header-left {
		flex: 0 0 auto;
	}

	.header-center {
		flex: 1 1 auto;
		display: flex;
		margin-left: 1.3rem;
		justify-content: center;
	}

	.main-nav {
		display: flex;
		flex-wrap: nowrap;
		gap: 0.6em;
		font-size: 1.15rem;
		white-space: nowrap;
	}

	.logo-link::before {
		content: "SW";
		font-size: 1.3rem;
	}

	.main-nav a,
	.main-nav .separator {
		white-space: nowrap;
	}
}
