:root{
	--debug-borders: none;
	/* --debug-borders: 2px solid */
}
body {
	margin: 0;
	background-color: #e5d0d6;
	color: #000;
	font-size: 20px;
}
.header {
	background-color: #fff;
	padding: 20px 0;
	border: var(--debug-borders);
	border-color: green;
}

.header-content {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.header-content h1 {
	margin: 0;
	text-align: center;
}

.logo-placeholder {
	text-align: center;
	margin-top: 10px;
}

.logo-placeholder p {
	margin: 0;
}
.navbar {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.nav-links {
	display: flex;
	gap: 20px;
}

.nav-links a {
	text-decoration: none;
	color: inherit;
	padding: 10px 15px;
	font-weight: 500;
}

.nav-links a:hover {
	color: #e5d0d6;
}

.nav-links a.active {
	color: black;
}

.nav-links a.visited {
	color: red;
}

.burger-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.burger-menu span {
	width: 25px;
	height: 3px;
	background-color: #000;
	margin: 3px 0;
	transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

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

.burger-menu.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

.hero-image {
	background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("img/bg_edited_v2.jpg");
	height: 85vh;
	width: 100vw;
	margin: 0 auto 0 auto;
	overflow: hidden;

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.hero-text {
	text-align: left;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: black;
	font-weight:bold;
	font-size: large;
	border: var(--debug-borders);
	border-color: green
}
.content-container {
	width: 75vw;
	/* width: 40em; */
	margin: 20px auto;
	display: flex;
	align-items: center;
	border: var(--debug-borders);
	border-color: black
}
.content-text {
	flex: 1;
	padding: 20px;
	text-align: left;
	border: var(--debug-borders);
	border-color: green;
}
.content-image {
	flex: 1;
	padding: 20px;
	text-align: center;
	border: var(--debug-borders);
	border-color: purple;
}
.content-image img {
	max-width: 100%;
	height: auto;
	object-fit: cover;
}

footer {
    width: 75vw;
    margin: 0 auto;
    font-size: 12px;
	border: var(--debug-borders);
	border-color: black
}

footer table {
    width: 100%;
    border-collapse: collapse;
}

footer td {
    padding: 5px 10px;
}

footer td:first-child {
    text-align: left;
}

footer td:last-child {
    text-align: right;
}

/* iPhone 13 (390x844px) */
@media screen and (max-width: 390px) {
	body {
		font-size: 16px;
	}
	
	.header-content h1 {
		font-size: 1.2em;
	}
	
	.navbar {
		position: static;
		transform: none;
	}
	
	.burger-menu {
		display: flex;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}
	
	.nav-links {
		display: none;
		position: fixed;
		top: 100px;
		right: 20px;
		background-color: #eee;
		flex-direction: column;
		width: 150px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.2);
		z-index: 1000;
		border-radius: 4px;
	}
	
	.nav-links.active {
		display: flex !important;
	}
	
	.nav-links a {
		padding: 12px 16px;
		font-size: 14px;
		border-bottom: 1px solid #ddd;
		text-align: left;
		width: 100%;
		box-sizing: border-box;
	}
	
	.nav-links a:last-child {
		border-bottom: none;
	}
	
	.hero-image {
		height: 60vh;
	}
	
	.hero-text {
		font-size: medium;
		padding: 20px;
		width: 90%;
	}
	
	.content-container {
		width: 95vw;
		flex-direction: column;
		margin: 15px auto;
	}
	
	.content-container:nth-child(4) {
		flex-direction: column-reverse;
	}
	
	
	.content-text, .content-image {
		padding: 15px;
	}
	
	.content-text h2 {
		font-size: 1.3em;
	}
	
	footer {
		width: 95vw;
		font-size: 10px;
	}
	
	footer table {
		font-size: 10px;
	}
}

/* iPad Air 11" (834x1194px) */
@media screen and (min-width: 391px) and (max-width: 834px) {
	body {
		font-size: 18px;
	}
	
	.header-content h1 {
		font-size: 1.5em;
	}
	
	.navbar {
		position: static;
		transform: none;
	}
	
	.burger-menu {
		display: flex;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}
	
	.nav-links {
		display: none;
		position: fixed;
		top: 120px;
		right: 20px;
		background-color: #eee;
		flex-direction: column;
		width: 160px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.2);
		z-index: 1000;
		border-radius: 4px;
	}
	
	.nav-links.active {
		display: flex !important;
	}
	
	.nav-links a {
		padding: 14px 18px;
		font-size: 16px;
		border-bottom: 1px solid #ddd;
		text-align: left;
		width: 100%;
		box-sizing: border-box;
	}
	
	.nav-links a:last-child {
		border-bottom: none;
	}
	
	.hero-image {
		height: 70vh;
	}
	
	.hero-text {
		font-size: large;
		padding: 25px;
		width: 85%;
	}
	
	.content-container {
		width: 85vw;
		margin: 20px auto;
		flex-direction: column;
	}
	
	.content-container:nth-child(4) {
		flex-direction: column-reverse;
	}
	
	.content-text, .content-image {
		padding: 18px;
	}
	
	.content-text h2 {
		font-size: 1.4em;
	}
	
	footer {
		width: 85vw;
		font-size: 11px;
	}
}
