/* Shared styles - all pages */

body {
	background-color: #fbfcd2;
	margin: 0;
	padding: 0;
}

/* Header styling */
header {
	background-color: #D4DB81;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	position: sticky;
	top: 0;
	z-index: 10000;
}

.hero-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2em;
}

.hero-container img {
	width: 100%;
	max-width: 55px;
	max-height: 55px;
	filter: brightness(15%);
}

#hero-title {
	color: rgb(0.8, 0.8, 0.9);
	font-family: "Lavishly Yours", "Brush Script MT", sans-serif;
	font-weight: 580;
	font-style: normal;
	font-size: 55px;
	margin: 0px;
}

nav {
width: 100%;
padding: 0;
margin: 0;
display: block;
background-image: linear-gradient(to bottom, #D4DB81, #D6CA33);
}

nav ul {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: inherit;
	font-family: "Autour One", "Brush Script MT", sans-serif;
	font-weight: 600;
	font-size: 12px;
	text-decoration: none;
	border-bottom-style: solid;
	border-bottom-color: #C4B923;
}

	nav ul li a, nav ul li a:visited {
		color: #111;
		padding: 15px 30px;
		margin: 5px;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		border-radius: 10px;
	}

		nav ul li a:hover {
			background-color: #f2e75a;
			color: #999;
		}

/* Button */
.recipe-button {
	padding: 0.5em 1em;
	background-color: #FFC269;
	color: #222;
	text-decoration: none;
	border-radius: 6px;
	font-family: "Autour One", sans-serif;
	transition: background-color 0.15s ease;
}

.recipe-button:hover {
	background-color: #EFAE4C;
}

.section-kicker,
.home-kicker {
	color: #82791f;
	font-family: "Autour One", sans-serif;
	font-size: 0.75em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.primary-button,
.secondary-button {
	display: inline-block;
	box-sizing: border-box;
	padding: 0.8em 1.2em;
	border-radius: 8px;
	font-family: "Autour One", sans-serif;
	font-size: 0.85em;
	text-decoration: none;
	transition: transform 0.15s ease, background-color 0.15s ease;
}


.primary-button {
	background-color: #D6CA33;
	color: #222;
}


.secondary-button {
	border: 2px solid #D6CA33;
	background-color: transparent;
	color: #555013;
}


.primary-button:hover,
.secondary-button:hover {
	transform: translateY(-2px);
}


.primary-button:hover {
	background-color: #f2e75a;
}


.secondary-button:hover {
	background-color: #fff8b0;
}


/* Footer */
.site-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8em;
	padding: 1.5em;
	background-color: #77773d;
	color: white;
	font-size: 0.8em;
}


	.site-footer img {
		width: 30px;
		height: 30px;
		filter: brightness(0) invert(1);
	}


/* Current navigation page */
nav a[aria-current="page"] {
	background-color: #f2e75a;
}
