html,
body {
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: #ffffff;
	color: #111111;
	line-height: 1.6;
}

/* Layout */

.page {
	max-width: 760px;
	margin: 0 auto;
	padding: 48px 24px;
}

/* Typography */

h1 {
	margin-bottom: 0.25rem;
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.subtitle {
	color: #666666;
	margin-bottom: 2.5rem;
}

h2 {
	font-size: 1.2rem;
	margin-bottom: 0.75rem;
}

p {
	margin: 0;
}

/* Sections */

section {
	margin-bottom: 2.5rem;
}

/* Links & Buttons */

a {
	color: #111111;
	text-decoration: underline;
}

.button-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
}

.button {
	display: inline-block;
	padding: 14px 20px;
	border: 1px solid #111111;
	text-decoration: none;
	color: #111111;
	text-align: center;
	border-radius: 6px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	min-width: 50%;
	max-width: 75%;
}

	.button:hover {
		background: #111111;
		color: #ffffff;
		border-color: #111111;
	}

/* Navbar */

.navbar-custom {
	background: linear-gradient(45deg, #4a4a4a, #3c3c3c);
	height: 142px;
	display: flex;
	align-items: center;
}

.navbar-brand {
	color: #ffffff;
	font-family: "Rowdies", sans-serif;
	font-size: 3.5rem !important;
	padding: 0 !important;
	padding-left: 20px !important;
	line-height: 1;
	text-decoration: none;
}

	.navbar-brand:link,
	.navbar-brand:visited,
	.navbar-brand:hover,
	.navbar-brand:active {
		color: #ffffff;
	}

/* Mobile */

@media screen and (max-width: 600px) {
	.navbar-brand {
		font-size: 1.75rem !important;
		padding-left: 12px !important;
	}

	header h1 {
		font-size: 1.75rem;
		line-height: 1.2;
	}

	.subtitle {
		font-size: 0.9rem;
		margin-bottom: 1.5rem;
	}
}
