body {
	font-family: "Segoe UI", Arial, Helvetica, sans-serif;
	background: #f4f6fb;
	color: #23272f;
	margin: 0;
	padding: 0;
	min-height: 100vh;
}

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #1a2233;
	color: #fff;
	padding: 24px 48px;
	position: relative;
	box-shadow: 0 2px 8px rgba(30, 40, 60, 0.07);
}

.logo {
	height: 60px;
	background: #fff;
	border-radius: 12px;
	padding: 4px;
	box-shadow: 0 1px 4px rgba(30, 40, 60, 0.08);
}

h1 {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	font-size: 35px;
	color: #ff9800;
	text-align: center;
	z-index: 1;
	letter-spacing: 2px;
	font-weight: 700;
}

nav .nav-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

nav .nav-list li {
	margin-left: 20px;
}

nav .nav-list a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 18px;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}

nav .nav-list a:hover {
	background: #ff9800;
	color: #1a2233;
}

.sub-header {
	background: #ff9800;
	color: #fff;
	padding: 18px 0;
	text-align: center;
	margin-bottom: 32px;
	letter-spacing: 1px;
	box-shadow: 0 1px 4px rgba(30, 40, 60, 0.06);
}

main {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	display: flex;
	align-items: flex-start;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 4px 24px rgba(30, 40, 60, 0.08);
	padding: 40px 36px;
	margin-bottom: 40px;
}

.picture-left {
	width: 125%;
	object-fit: cover;
	border-radius: 10px;
	margin-right: 36px;
	/* Trying different colors here
  doesn't seem to change how the shadow looks a whole lot. (at least with two dark colors) 
  may just not be visible with low opacity though*/
	box-shadow: 0 2px 12px rgba(255, 152, 0, 0.1);
}

.picture-right {
	width: 125%;
	object-fit: cover;
	border-radius: 10px;
	margin-left: 36px;
	box-shadow: 0 2px 12px rgba(255, 152, 0, 0.1);
}

.intro-text h2 {
	margin-top: 0;
	text-align: center;
	color: #ff9800;
	font-size: 24px;
	letter-spacing: 1px;
}

.cuisine-row {
	display: flex;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 40px;
}

.cuisine-col {
	flex: 1 1 0;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(30, 40, 60, 0.07);
	padding: 24px 18px 18px 18px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cuisine-col h3 {
	color: #ff9800;
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 22px;
	letter-spacing: 1px;
}

.cuisine-img {
	width: 100%;
	max-width: 180px;
	height: 120px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 14px;
	box-shadow: 0 1px 6px rgba(255, 152, 0, 0.1);
}

.cuisine-col p {
	font-size: 15px;
	color: #444;
	margin: 0;
}
.project-row {
	display: flex;
	align-items: stretch;
	gap: 32px;
	margin-bottom: 40px;
}

.project-img-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	flex: 1 1 0;
	min-width: 160px;
	max-width: 220px;
}
.project-img-col.left {
	order: 0;
	margin-right: 0;
}

/* I struggled with flexbox ordering here for a bit - the images wanted to clip into
behind the text in some of the other solutions I tried. also struggled w/ window resizing.
I eventually found this:
https://www.w3schools.com/cssref/css3_pr_order.php
which seems to fix it, after I put the elements into a flexbox */
.project-img-col.right {
	order: 1;
	margin-left: 0;
}
.project-img-col h2 {
	margin: 0 0 12px 0;
	color: #ff9800;
	font-size: 22px;
	text-align: center;
	letter-spacing: 1px;
}
.project-img {
	width: 200%;
	max-width: 250px;
	height: 250px;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 1px 6px rgba(255, 152, 0, 0.1);
	background: #fff;
}
.project-text-col {
	flex: 2 1 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 10px;
}
.project-text-col h2 {
	margin: 0 0 12px 0;
	color: #ff9800;
	font-size: 22px;
	text-align: center;
	letter-spacing: 1px;
}
.project-text-col p {
	margin: 0;
	color: #444;
	font-size: 15px;
}
