* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
:root {
	--green50: #50461b;
	--greena3: #a3902a;
	--honeyberry59: #5971a1;
	--honeyberryac: #acb8d4;
	--honeyberryd5: #d5dbea;
	--honeyberry1f: #1f1339;
	--honeyberrya2: #a2161c;
	--honeyberryd0: #d05d69;
	--honeyberrye6: #e63b4d;
	--caption-font-size: 0.7rem;
	--heading-font-family: "Times New Roman", serif;
	--text-font-family: Georgia, serif;
}
html {
	font-size: max(1.5vw, 18px);
	font-family: var(--text-font-family);
}
body {
	--body-background: #f7ece2;
	background-color: var(--body-background);
}
h1, h2, h3, h4 {
	font-family: var(--heading-font-family);
	text-align: center;
}

a {
	color: #000000;
	text-decoration: none;
}

.smallest {
	font-size: min(0.75rem, 3vw);
}

.heading-smaller {
	font-size: min(1.15rem, 5vw);
}
.heading-small {
	font-size: 1.25rem;
	font-weight: 550;
}
.medium {
	font-size: min(1.5rem, 5.5vw);
	font-weight: 600;
}
.heading-large {
	font-size: min(1.75rem, 8vw);
	font-weight: 700;
}
.heading-larger {
	font-size: min(2rem, 5.5vw);
	font-weight: 900;
}


header {
	width: 100%;
	background: linear-gradient(180deg, var(--honeyberryd5), var(--honeyberry1f));
	position: fixed;
	top: 0;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
img[src*="mylogo"] {
	width: min(70px, 12vw);
	height: auto;	
}
.honeyberry {
	display: flex;
	justify-content: center;
	align-items: center;
}
header h1 {
	padding: 0 0.05em;
}

img[src*="honeyberry-logo"] {
	width: min(70px, 9.5vw);
	height: auto;
    border-radius: 50%;	
}
.drop-menu {
	width: 13%;
}
.menu-button {
	font-size: min(1.25rem, 4.5vw);
	font-weight: 700;
	padding: 0 0.5em;
	transform: translate(-23%);
	background-color: var(--honeyberryd0);
	border: none;
	border-radius: 1em;
}
.menu-content {
	background-color: var(--honeyberrye6);
	display: none;
	position: absolute;
	right: 1%;
	box-shadow: 0.5rem 0.5rem 0.25rem var(--honeyberry1f);
	z-index: 1;
}
.menu-content a {
	padding: 0.2em;
	display: block;
}
.menu-content a:hover {
	font-size: 1.15em;
	background-color: var(--greena3);
}
.drop-menu:hover .menu-content{
	display: block;
}
.drop-menu:hover .menu-button {
	cursor: pointer;
	background-color: var(--greena3);
}


.hero-section {
	min-width: 300px;
	max-width: 750px;
	padding: 0.5rem;
	margin: min(6rem, 15vw) auto 0;
	border-radius: 7.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("../images/hero/honeyberry-transparent.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.hero-section h2 {
	color: var(--honeyberrya2);
	padding: 0.5em;
}
img[src*="hero"] {
	width: 33%;
	height: auto;
	border: 0.25rem solid var(--honeyberry1f);
	border-radius: 3rem;
	opacity: 0.7;
}

ul, ol {
	padding: 0 0.25em;
	list-style-type: none;
}
li {
	padding: 0.25em;
}
details, p {
	padding: 0.3em;
}

.ingredients {
	min-width: 300px;
	max-width: 820px;
	margin: min(5rem, 15vw) auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ingredients-text {
	min-width: 300px;
	max-width: 360px;
	color: var(--honeyberryd5);
	background-color: var(--honeyberry1f);
	padding: 0.5em;
	border-radius: 1.5em;
	text-align: center;
}


.ingredients-images {
	min-width: 300px;
	max-width: 30vw;
	background-color: var(--honeyberry59);
	padding: 1%;
	border-radius: 1.25rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: center;
}
.ingredients figure {
	width: 29%;
	margin: 0.5% 2%;
}
img[src*='ingredients'] {
	width: 100%;
	height: auto;
}
.ingredients figcaption {
	font-size: var(--caption-font-size);
	text-align: center;
}
.how-to {
	min-width: 300px;
	max-width: 955px;
	margin: 0 auto min(5rem, 15vw);
	display: flex;
	justify-content: center;
	align-items: center;
}
.how-to-text {
	min-width: 300px;
	max-width: 500px;
	padding: 0.5em;
	background-color: var(--honeyberryac);
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

strong {
	font-size: 0.8rem;
	font-weight: 600;
	text-align: center;
	margin: 0.5em 0;
}

.how-to button {
	font-size: max(1.5vw, 18px);
	font-family: var(--text-font-family);
	background-color: var(--honeyberryd0);
	padding: 0 0.2em;
	border: 0.1em solid; 
	border-radius: 1em;
	box-shadow: 0 0.25rem;
}
.how-to button:hover {
	background-color: var(--greena3);
}

.how-to-images {
	min-width: 300px;
	max-width: 380px;
	background-color: var(--honeyberryd0);
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: center;
}
figure {
	width: 48%;
}
img[src*='how-to'] {
	width: 75%;
	height: auto;
	margin: 5% 7% 0;
}
.how-to figcaption {
	font-size: var(--caption-font-size);
	text-align: center;
}

#toppings {
	--brown3d: #3d180a;
	--brown9a: #9a3d1b;
	--green93: #93c572;
	min-width: 300px;
	max-width: 955px;
	margin: 0 auto min(5rem, 15vw);
	display:flex;
	justify-content: center;
	align-items: center;
}

.toppings-text {
	min-width: 200px;
	max-width: 430px;
	padding: 0.5em;
	color: var(--brown3d);
	background: linear-gradient(180deg, var(--brown9a), var(--green93));
	text-align: center;
}

img[src*='topping'] {
	min-width: 150px;
	max-width: 250px;
	height: auto;
	border: 0.175rem solid var(--green50);
    border-radius: 2.5rem;
}
#tip {
	min-width: 300px;
	max-width: 750px;
	padding: 0.5em;
	margin: 0 auto min(5rem, 15vw);
	background: linear-gradient(180deg, var(--honeyberryd5), var(--honeyberry59));
}

footer {
	width: 100%;
	background: linear-gradient(180deg, var(--honeyberryd5), var(--honeyberry1f));
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: relative;
	bottom: 0;
}	
small {
	font-size: clamp(10px, 1.5vw, 0.75rem);
}
footer button {
	font-family: var(--text-font-family);
	background-color: var(--honeyberryd0);
	padding: 0.5em;
	border: none;
	border-radius: 1em;
}
footer button:hover {
	background-color: var(--greena3);
	border-radius: 1em;
}

@media only screen and (max-width: 630px) {
	.honeyberry {
		transform: translate(-2.5%);
	}
}

@media only screen and (max-width: 600px) {
	.hero-section {
	border-radius: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
    }
    img[src*="hero"] {
		width: 200px;
		height: auto;
	}
	.ingredients, .how-to, #toppings {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	}
}

@media print {
	header, footer {
		display: none;
	}
}