/* Homepage-specific styles */
body {
	min-width: 650px;
}

/* Homepage override: use viewport-image for main boundary, small spacing for maintext */
.viewport-image {
	margin-top: calc(var(--menu-content-boundary, 180px) + 40px); /* Use menu-controlled boundary */
}

.maintext {
	margin-top: 20px; /* Small spacing below viewport-image */
}

.viewport-image {
	width: 80%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	/* Remove page push-down; header space now comes from body padding-top */
}

.logo {
	display: block;
	max-width: 600px;
}

/* Remove page push-down; header space now comes from body padding-top */
.maintext {
	/* margin-top: 10vh; <-- delete */
	/* keep the rest: */
	color: var(--white);
	margin-right: 10%;
	margin-left: 10%;
	margin-bottom: 30px;
	background-color: var(--menu-black);
	padding-bottom: 50px;
	position: relative;
	z-index: 0;
}

/* Scope typography so it doesn't affect side pages */
.maintext h1 {
	font-size: 38px;
	margin-left: 20px;
	text-align: center;
	color: var(--yellow);
}

.maintext h2 {
	font-size: 32px;
	margin-left: 24px;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: justify;
	color: var(--yellow);
}

.maintext h3 {
	font-size: 28px;
	margin-left: 28px;
	margin-top: 10px;
	text-align: justify;
	text-decoration: underline;
}

.maintext p {
	font-size: 24px;
	margin-left: 32px;
	margin-right: 20px;
	text-align: justify;
	color: var(--light-gray);
}

.maintext ul.a {
	font-size: 16px;
	margin-left: 48px;
	list-style-type: circle;
}

/* Homepage responsive styles */
@media screen and (min-width: 768px) {
	/* Keep standardized spacing - no margin-top overrides */
	
	.maintext h1 {
		font-size: 48px;
	}
	
	.maintext h2 {
		font-size: 36px;
	}
	
	.maintext h3 {
		font-size: 30px;
	}
}

@media screen and (min-width: 1150px) {
	/* Keep standardized spacing - no margin-top overrides */
	
	.maintext h1 {
		font-size: 64px;
	}
	
	.maintext h2 {
		font-size: 48px;
	}
	
	.maintext h3 {
		font-size: 34px;
	}
	
	.maintext p {
		font-size: 24px;
	}
	
	.maintext ul.a {
		font-size: 24px;
	}
} 