body {
	margin: 0;
	padding: 0;
	background-color: #fffff1;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: lighter;
	font-size: 12px;
	letter-spacing: 1px;
}

.navigation-side-bar {
	position: fixed;
	box-sizing: border-box;
	height: 100vh;
	width: 30vw;
	padding: 50px 50px 50px 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0;
}

.window {
	box-sizing: border-box;
	width: 70vw;
	margin-left: 30vw;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.photography {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.design {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

#imprint {
	position: absolute;
	width:100%;
	padding:50px;
	overflow: auto;
	box-sizing: border-box;
	z-index: 1;
}

.photography-gallery {
	padding: 50px 50px 50px 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* Two columns */
	gap: 20px; /* Spacing between images */
}

.photography-gallery img {
	width: 100%; /* Make image responsive */
	height: auto; /* Maintain aspect ratio */
}

.photography-gallery .horizontal {
	grid-column: 1 / -1; /* Span across both columns */
}

.photography-gallery .vertical {
	aspect-ratio: 2 / 3; /* maintain a 2:3 aspect ratio */
}

.hero-gallery {
	position: fixed;
	box-sizing: border-box;
	height: 100vh;
	width: 70vw;
	padding: 50px;
	justify-content: center;
	align-items: center;
}

.hero-gallery img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.design-presentation {
	padding: 50px 50px 50px 0; /* Ensure there's padding */
	box-sizing: border-box; /* Subtract the left and right padding from the width */
	overflow: hidden; /* Prevents overflow if any child element is larger */
}

.design-presentation-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 12px;
	margin: 0;
}

.design-presentation-cover-image {
	width: 100%; /* Image spans the full width of the parent div */
	height: auto; /* Maintains the aspect ratio of the image */
	display: block; /* Removes bottom space created by inline images */
	padding: 0; /* Ensure the image doesn't include padding */
	margin: 0; /* Prevents any default margin */
}

.location {
	font-style: italic;
	margin-top: 20px;
}

.spacer {
	margin-top: 20px;
}

.footer-plain-text {
	color: #595959;
}

img {
	pointer-events: none;
}

h1 {
	margin:0;
	padding:0;
	font-family: 'Adobe Garamond', 'Times New Roman', serif;
	font-weight: normal;
}

h2 {
	font-weight: lighter;
	letter-spacing: 1px;
}

.design-presentation h2 {
	margin-top: 0;
}

ul {
	margin: 0;
	padding: 0;
	line-height: 150%;
	letter-spacing: 1px;
}

li {
	list-style: none;
	transition: color 0.5s ease;
}

a {
	color: #000000;
	text-decoration: none;
}

a:hover {
	color: #FF6F20;
}

p {
	max-width:600px;
	margin:0;
	padding:0;
	line-height: 150%;
	letter-spacing: 1px;
}

.highlighted-text {
	color: #FF6F20;
}

button {
	display: inline-block;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: lighter;
	font-size: 12px;
	letter-spacing: 1px;
	margin: 24px 0 24px 0;
	padding: 8px 8px;
	color: #000000;
	background-color: transparent;
	border: 1px solid #595959;
	border-radius: 5px;
	text-align: center;
	text-decoration: none;
	transition: color 0.3s ease, border 0.3s ease;
}

button:hover {
	color: #FF6F20;
	border: 1px solid #FF6F20;
}

@media (max-width: 768px) {
	.navigation-side-bar {
		position: relative;
		height: auto;
		width: 100vw;
		padding: 35px 35px 35px 35px;
	}

	.window {
		width: 100vw;
		margin-left: 0;
		gap: 75px;
	}

	.photography {
		gap: 200px;
	}

	.design {
		gap: 75px;
	}

	.photography-gallery {
		grid-template-columns: 1fr; /* Single column on mobile */
		padding: 10px;
		gap: 10px;
	}

	.design-presentation {
		padding: 10px; /* Less padding for better mobile view */
		width: 100%; /* Adjust width for mobile */
	}

	.design-presentation-description {
		padding: 25px;
	}

	.design-presentation-buttons {
		margin: 24px 0 0 0;
	}

	button {
		margin: 0;
	}
}

