/* Meyers Reset*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ----------------------End of Reset------------------------------------ */
/*-------------------Navigation Styling---------------------------------*/
header {
	height: 105px;
  padding: 10px;
	background-color: #F4C16C;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	justify-items: center;
	gap: 15px;
	box-shadow: 0px 2px 1px 0px #0000004f;
  }
nav {
	display: flex;
  height: auto;
  margin: 5px;
  padding: 5px;
	text-align: center;
	font-size: 1.5em;
}
@media (max-width: 550px ) {
	nav {
		font-size: 1em;
	}
}
.navbarlink {
  display: inline-block;
  padding: 10px;
  color: #ffffff;
	text-shadow: 1px 1px 2px grey;
	font-family: 'Montserrat', Poppins, Manrope, arial, sans-serif;
}
.logo img {
	float: left;
}
/*------------------End of navigation styling --------------------------------*/
/*-----------------------------Page Layout-----------------------------------*/
body {
  font-family: Raleway, Overpass, Poppins, Manrope, sans-serif;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5em;
}
main {
	max-width: 1920px;
	min-width: 360px;
	margin: 0px 25vh;
}
@media (max-width: 850px) {
	main {
		margin: 0 auto;
	}
}
footer {
	display: flex;
	margin-top: 50px;
	position: sticky;
	width: auto;
	padding: 10px 50px 10px 50px;
	background: #F4C16C;
}
.footerinfo{
	width: 100%;
	padding: 0px 150px;
  grid-template-columns: auto auto;
  align-content: center;
  justify-content: space-evenly;
  justify-items: center;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 850px) {
	.footerinfo {
		padding: 0px 5px;
	}
}
/*-----------------------------Typography-------------------------------*/
h1, h2, h3, h4, figcaption {
	font-family: 'Montserrat', Poppins, Manrope, arial, sans-serif;
	line-height: 1.25em;
}
h1 {
  color: #ffffff;
  font-size: 2.75em;
	margin-bottom: 20px;
	padding: 10px;
}
h2 {
  color: #DC9E40;
  font-size: 2em;
	margin-bottom: 10px;
	padding: 10px;
}
h3 {
  color: #AF793B;
  font-size: 1.75em;
  padding: 10px;
  text-align: center;
  margin-bottom: 10px;
}
h4 {
	font-size: 1.5em;
	color: #1D0807;
}
p {
  color: #000000;
  font-size: 1.5em;
  padding: 10px;
  line-height: 1.5em;
}
a:link {
  color: #ffffff;
  text-decoration: none;
  }
a:visited {
  color: #ffffff;
}
a:hover {
  color: #1D0807;
  text-decoration: none;
}
a:active {
  color: #967006;
  text-decoration: none;
}
/*----------------------End of Typography------------------*/
/*------------------Homepage Banner------------------------*/
#herobanner {
	width: 100%;
	height: 550px;
	background-color: #1D0807;
	background: url("img/breadbanner.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: local;
}
#herotext {
		text-shadow: 2px 3px 2px #0000009c;
		text-align: center;
		padding: 150px 0px 0px;
}
@media (max-width: 430px){
	#herotext {
		padding: 40px;
	}
}
a#herobutton{
	font-family: 'Montserrat', Poppins, Manrope, arial, sans-serif;
	font-size: 1.25em;
  padding: 10px;
  margin-top: 25px;
	margin-right: 5px;
  display: inline;
  border-style: none;
  border-radius: 40px;
  background-color: #F4B140;
  color: #fff;
  box-shadow: 1px 2px 1px #1d1d1d45;
}
a#herobutton:hover {
	color: #000;
}
a#herobutton:active {
  color: #967006;
  text-decoration: none;
  }
  /*------------------Featured text sections--------------------------*/
.tagline {
	width: 100%;
	height: fit-content;
	display: flex;
	justify-content: center;
	background-color: #F4CA8C;
	background: url("img/bakerybackground.png") no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	margin-bottom: 50px;
}
.taglinetext {
	width: 33vw;
	height: auto;
	margin: 50px;
	background-color: #fff;
	border: 3px solid #000;
	padding: 25px;
	position: relative;
}
@media (max-width: 1280px) {
	.taglinetext {
		padding: 10px;
		min-height: 330px ;
	}
}
@media (max-width: 1080px) {
	.taglinetext {
		padding: 10px;
		min-width: 400px;
		min-height: 330px ;
	}
}
@media (max-width: 820px) {
	.taglinetext {
		padding: 10px;
		min-width: 400px;
		min-height: 375px ;
	}
}
@media (max-width: 430px) {
	.taglinetext {
		padding: 10px;
		min-width: 350px;
		min-height: 350px;
	}
}
@media (max-width: 380px) {
	.taglinetext {
		font-weight: 200;
		padding: 10px;
		min-width: 250px;
		min-height: 450px;
	}
}
/*---------------------Menu Banner-----------------------*/
#menubanner {
	width: 100%;
	height: 350px;
	background-color: #1D0807;
	background: url("img/Bakerybg.jpg") no-repeat;
	background-size: cover;
	background-position: left;
	background-attachment: local;
}
#menubannertext {
		text-align: center;
		padding:100px 90px 0px;
		text-shadow: 2px 3px 2px #0000009c;
}
@media (max-width: 430px){
	#menubannertext  {
		padding: 40px;
	}
}
.menutext {
	width: 33vw;
	background-color: #fff;
	border: 3px solid #000;
	padding: 50px;
	margin: 25px;
	position: relative;
}
@media (max-width: 1050px) {
	.menutext {
		padding: 10px;
		min-width: 400px;
		min-height: 290px ;
	}
}
@media (max-width: 480px) {
	.menutext {
		padding: 10px;
		min-width: 250px;
		height: fit-content;
	}
}
/*------------------Review section-----------------------*/
#reviews {
	display: grid;
	grid-template-columns: 275px 275px 275px;
	align-content: center;
	justify-content: space-around;
	justify-items: center;
	align-items: start;
	gap: 90px;
	border-radius: 10px;
	background-color: #fff;
	margin: 0 auto;
	margin-bottom: 50px;
}
@media (max-width: 1050px) {
	#reviews {
		grid-template-columns: 275px;
		gap: 5px;
	}
}
/*------------------------Image tiles--------------------*/
.tiles {
	display: grid;
	grid-template-columns: auto auto auto;
	align-content: center;
	justify-content: space-around;
	justify-items: center;
	align-items: center;
	gap: 90px;
	border-radius: 10px;
	background-color: #fff;
	margin: 50px auto;
}
@media (max-width: 1050px) {
	.tiles {
		grid-template-columns: 1fr;
		gap: 5px;
	}
}
.menutiles {
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: auto auto;
	align-content: center;
	justify-content: space-around;
	justify-items: center;
	align-items: center;
	gap: 25px;
	border-radius: 10px;
	background-color: #fff;
	margin: 0 auto;
	margin-bottom: 50px;
	max-width: 700px;
}
@media (max-width: 1050px) {
	.menutiles {
		grid-template-columns: 1fr;
		gap: 5px;
		max-width: 300px;
	}
figure {
	padding: 10px}
}
figcaption {
	margin: 10px;
	padding-top: 5px;
	text-align: center;
	font-size: 1em;
	border-top: 3px solid #F4B140;
}
/*--------------------About us page--------------------*/
img+h1 {
	color: #DC9E40;
	margin-bottom: 10px;

}
#ourstory {
	margin-bottom: 100px;
	margin-top: 100px;
}
@media (max-width: 1180px) {
	#ourstory {
		float: none;
	}
}
.aboutus {
	float: left;
	margin-bottom: 100px;
	padding: 10px 50px 10px 10px;
}
@media (max-width: 1080px) {
	.aboutus{
	float: none;
	margin-top: 0px;
	padding: 10px;
	}
}
/*-------------------Find us section------------*/
#findus {
	width: 100%;
	height: auto;
	display: inline-block;
	margin: 100px 10px;
}
.findusmap {
  float: left;
  margin-bottom: 10px;
	padding: 10px 50px 10px 10px;
}
/*---------------------Contact page banner-------------------*/
#contactbanner {
	width: 100%;
	height: 350px;
	background-color: #1D0807;
	background: url("img/bakerybackground.png") no-repeat;
	background-size: cover;
	background-position: left;
	background-attachment: fixed;
}
#contactbannertext {
		text-shadow: 2px 3px 2px #0000009c;
		text-align: center;
		padding:100px 90px 0px;
}
/*-----------------Map & Details--------------------*/
#contactinfo {
	width: 100%;
	margin: 100px 0px;
	height: 800px;
}
iframe {
	float: right;
}
#contactdetails {
	float: left;
	padding: 10px;
}
@media (max-width: 1500px) {
	#contactinfo {
		width: 800px;
		margin: 0 auto;
	}
	iframe {
		width: 800px;
		float: none;
		margin-top: 25px;
	}
	#contactdetails {
		float: none;
		margin: 0 auto;
	}
}
@media (max-width: 1080px) {
	#contactinfo {
		width: 600px;
	}
	iframe {
		width: 550px;
		float: none;
	}
	#contactdetails {
	
	}
}
@media (max-width: 850px) {
	#contactinfo {
		width: 500px;
	}
	iframe {
		width: 500px;
		float: none;
		margin: 5px ;
	}
#contactdetails {
	  line-height: 75%;
		font-size: 75%;
	}
}
@media (max-width: 650px) {
	#contactinfo {
		width: 300px;
		height: auto;
		margin: 0 auto;
	}
	iframe {
		width: 300px;
		height: auto;
		float: none;
		margin: 5px ;
	}
	#contactdetails {
		line-height: 0.75em;
		font-size: 0.75em;
		margin-bottom: 100px;
		padding: 5px;
	}
}