body {
	height: 100vh;
	display: flex;
	flex-direction: column;
}

@media (min-width: 769px) {
	body {
		overflow: auto;
	}
}

/* Top Navigation */
.top-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 3rem;
	background-color: #e9e7e0;
	flex-shrink: 0;
}

.nav-left, .nav-right {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-brand {
	font-size: 2rem;
	font-weight: 700;
	color: #0C131A;
	text-transform: uppercase;
}

.nav-link {
	color: #6b7280;
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 300;
	transition: color 0.3s ease;
	background: none;
	border: none;
	cursor: pointer;
	font-family: 'Space Mono', monospace;
}

.nav-link:hover, .nav-link.active {
	color: #0C131A;
}

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
	padding: 0.5rem;
}

.hamburger span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #0C131A;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Page Container */
.page-container {
	flex: 1;
	display: grid;
	grid-template-columns: 20vw 1fr 20vw;
	grid-template-rows: auto 1fr auto;
	gap: 1.5rem 1.5rem;
	align-items: start;
	padding: 2rem 0 2rem 3rem;
	overflow: hidden;
}

/* Image Positioning */
.image-top-left {
	grid-column: 1;
	grid-row: 1;
	margin-left: 3rem;
	width: 100%;
	height: min(250px, 16vw);
}

.image-top-right {
	grid-column: 3;
	grid-row: 1 / -1;
	width: 100%;
	height: 100%;
}

.image-bottom-left {
	grid-column: 1;
	grid-row: 3;
	width: calc(100% + 3rem);
	height: min(300px, 20vw);
	align-self: start;
	margin-left: -3rem;
}

.img-fluid {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Text Content */
.content-text {
	grid-column: 2;
	grid-row: 1 / -1;
	align-self: start;
	padding-left: 5rem;
	overflow-wrap: break-word;
	word-wrap: break-word;
	min-width: 0;
}

.content-title {
	font-size: 2rem;
	font-weight: 700;
	color: #0C131A;
	margin-bottom: 1rem;
}

.content-description {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #2d3748;
	font-weight: 300;
}

.home-social-links {
	margin-top: 1rem;
	font-size: 1rem;
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

/* Section Styles */
.section-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #0C131A;
	margin-bottom: 1rem;
}

.section-title:not(:first-child) {
	margin-top: 2rem;
}

.section-subtitle {
	font-size: 1.25rem;
	font-weight: 600;
	color: #0C131A;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.section-content-text p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #5a6270;
	font-weight: 300;
	margin-bottom: 0.75rem;
	max-width: 100%;
	overflow-wrap: break-word;
}

.text-link {
	color: #2d3748;
	text-decoration: underline;
	transition: opacity 0.3s ease;
	word-break: break-word;
	overflow-wrap: break-word;
}

.text-link:hover {
	opacity: 0.6;
}

/* Footer */
.page-footer {
	display: flex;
	justify-content: space-between;
	padding: 1.5rem 3rem;
	background-color: #e9e7e0;
	flex-shrink: 0;
}

.footer-left, .footer-center, .footer-right {
	font-size: 0.85rem;
	color: #6b7280;
	font-weight: 300;
}

/* Responsive - Small Laptops/Tablets Landscape */
@media (max-width: 1024px) and (min-width: 769px) {
	.page-container {
		grid-template-columns: 22vw 1fr 20vw;
		gap: 1.5rem 1.5rem;
		padding: 1.5rem 0 1.5rem 2rem;
	}

	.image-top-left {
		margin-left: 2rem;
		height: min(200px, 18vw);
	}

	.image-bottom-left {
		width: calc(100% + 2rem);
		height: min(240px, 22vw);
		margin-left: -2rem;
	}
}

/* Responsive - Mobile & Tablet */
@media (max-width: 768px) {
	body {
		height: auto;
	}

	.top-nav {
		padding: 1rem 1.5rem;
	}

	.nav-left {
		width: 100%;
		justify-content: space-between;
	}

	.hamburger {
		display: flex;
	}

	.nav-right {
		display: none;
		position: absolute;
		top: 70px;
		right: 0;
		left: 0;
		flex-direction: column;
		gap: 0;
		background-color: #e9e7e0;
		padding: 1rem 1.5rem;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		z-index: 1000;
	}

	.nav-right.active {
		display: flex;
	}

	.nav-link {
		padding: 0.75rem 0;
		width: 100%;
		text-align: left;
	}

	.page-container {
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
		padding: 1rem;
		overflow: visible;
	}

	.content-text {
		order: 1;
	}

	.image-top-left {
		order: 2;
		width: 100%;
		height: 200px;
		margin-left: 0;
	}

	.image-bottom-left {
		order: 3;
		width: 100%;
		height: 200px;
	}

	.image-top-right {
		order: 4;
		width: 100%;
		height: 250px;
	}

	.page-footer {
		flex-direction: column;
		gap: 0.5rem;
		padding: 1rem 1.5rem;
	}
}
