body.home-page {
	background: url("../Images/Antigua/Nelsons/Antigua13.webp") no-repeat center
		center fixed;
	background-size: cover;
	background-attachment: fixed;
}

.home-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	min-height: 100vh;
	padding-top: 120px; /* Space for fixed header */
	padding-bottom: calc(100vh - 80px); /* Full viewport minus footer - allows content to scroll under header */
	position: relative;
	z-index: 100;
}

.text-box-container {
	width: 50%;
	background-color: rgba(255, 255, 255, 0.85);
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin: 20px 0;
	position: relative;
	max-height: 70vh;
	overflow-y: auto;
	z-index: 100;
}

hr {
	border: none;
	border-top: 4px solid black;
}

.nelson-callout {
	background-color: rgba(255, 255, 255, 0.7);
	border: 4px double darkslategrey;
	border-radius: 10px;
	padding: 14px 18px;
	margin: 4px 0;
}

.nelson-callout p {
	margin: 0;
	color: darkgoldenrod;
	font-style: italic;
	line-height: 1.5;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
	.text-box-container {
		width: 90%;
		max-height: 65vh;
	}

	.nelson-callout {
		padding: 12px 14px;
	}

	.home-content {
		padding-top: 100px;
		padding-bottom: calc(100vh - 60px);
	}