:root{
	--paprika:#F15A2B;
	--olive:#435933;
	--gold:#FCC630;
	--scarlet:#BC2727;
}
/*fonts*/
body{
	font-family: "Poppins", sans-serif;
	font-weight: 500;
  	font-style: normal;
  	margin: 0;
}

h1{
	font-family: "Poppins", sans-serif;
	font-weight: 700;
  	font-style: normal;
  	font-size: 72px;
}

h2{
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
  	font-size: 32px;
}

/*header and nav*/

header {
	background-color: var(--gold);
	display: flex;
	flex-direction: row;
	align-items: center;
}

#logo-container img {
	width: 360px;
}

#logo-container {
	margin-right: auto;
}

header #menu {
	display: flex;
	flex-direction: row;
	align-items: center;
}

header ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

header nav ul li {
	list-style: none;
	padding: 10px;
	padding: 15px;
}

header nav ul li a {
	font-size: 24px;
	font-family: "Poppins", sans-serif;
  	font-weight: 600;
  	font-style: normal;
	display: inline-block;
	text-decoration: none;
}

header nav ul li a:hover {
	color: var(--scarlet);
	transition: color 500ms;
}


#carticon a {
	font-size: 2.5em;
	padding-right: 7px;
	padding-left: 15px;
}

#carticon a:hover {
	color: var(--scarlet);
	transition: color 500ms;
}

#usericon a {
	font-size: 3em;	
	padding-right: 15px;
	padding-left: 7px;
}

#usericon a:hover {
	color: var(--scarlet);
	transition: color 500ms;
}

/*home*/

#homehero {
    background-image: url("../images/mainhero.jpeg"); background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 520px;
    display: flex;
    flex-direction: column;
  	justify-content: center;
    align-items: center;
}

#homehero h1 {
	color: white;
	margin-top: 0;
	margin-bottom: 20px;
}

#homehero a {
	background-color: var(--paprika);
	padding-top: 9px;
	padding-bottom: 9px;
	padding-left: 20px;
	padding-right: 20px;
	color: white;
	font-size: 24px;
  	font-family: "Poppins", sans-serif;
  	font-weight: 600;
  	font-style: normal;
	border-radius: 5px;
}

#homehero a:hover{
	background-color: var(--scarlet);
  	transition: background-color 500ms;
}

#newhome {
	display: flex;
    flex-direction: column;
    align-items: center;
}

#newhome h2 {
	margin-top: 120px;
	margin-right: auto;
	margin-left: 120px;
}

#newitems img {
	width: 300px;
	filter: drop-shadow(#c5c5c5 0px 4px 2px);
}

#newitems {
	display: flex;
	flex-direction: row;
	gap: 25px;
}

#location iframe {
	border-radius: 20px;
}

#location {
	margin-top: 120px;
	margin-bottom: 30px;
	display: flex;
    flex-direction: column;
    align-items: center;
}

#location h2 {
	text-align: center;
	margin-top: 100px;
	line-height: 1.8;
}

/*footer*/

footer #logo-container {
	margin-right: 0;
}

footer {
	background-color: var(--paprika);
	color: white;
	display: flex;
	flex-direction: row;
	padding-top: 30px;
	padding-bottom: 30px;
	align-items: center;
	font-size: 18px;
	font-family: "Poppins", sans-serif;
  	font-weight: 600;
  	font-style: normal;
}

footer nav ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	height: 120px;
}

footer nav ul li {
	list-style: none;
	padding-right: 100px;
}

footer nav ul li a {
	display: inline-block;
	text-decoration: none;
}

#footer3 {
	display: flex;
	flex-direction: column;
}

#footer3 ul {
	display: flex;
	flex-direction: row;
	padding-left: 0;
	gap: 40px;
}

#footer3 ul a {
	color: var(--olive);
	font-size: 1.7em;
	background-color: white;
	padding-left: 3px;
	padding-right: 3px;
	border-radius: 50%;
	filter: drop-shadow(#602a00 0px 0px 2px);
}

#footer3 {
	list-style: none;
}

#footer3 {
	display: inline-block;
	text-decoration: none;
}

#copyright {
	font-size: 12px;
	font-family: "Poppins", sans-serif;
  	font-weight: 600;
  	font-style: normal;
}

/*home 360*/

@media (max-width:360px) {

	#homehero {
		display: flex;
    	flex-direction: column;
  		justify-content: center;
    	align-items: center;
	}

	#homehero h1 {
		font-size: 42px;
		line-height: 1.4;
		text-align: center;
	}

	#newhome h2{
		text-align: center;
		margin-right: auto;
		margin-left: auto;
		margin-top: 60px;
	}

	#newitems {
		display: flex;
		flex-direction: column;
		justify-content: center;
    	align-items: center;
    	width: 90%;
	}

	#location .embed-map-fixed {
    width: 300px;
    margin: 0 auto;
    text-align: center;
	}

	#location .embed-map-container {
    width: 300px;
	}

	#location .embed-map-frame {
    width: 300px;
    display: block;
	}

	#location h2 {
		text-align: center;
		font-size: 20px;
		max-width: 300px;
		margin-top: 40px;
	}

}

/*header 360 hamburger*/

#hamb {
    display: none;
}

.hambutton {
    display: none;
}

@media (max-width: 360px) {

	header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

	header #logo-container img {
		width: 100%;
	}

    .hambutton {
        display: block;
        font-size: 2em;
        cursor: pointer;
    }

    header #menu {
    	max-height: 0;
    	overflow: hidden;
    	transition: max-height 100ms ease;
    	display: flex;
    	flex-direction: column;
	}

	header nav ul {
    	display: flex;
    	flex-direction: column;
    	margin: 0;
	}

	#carticon a {
		padding-right: 120px;
		padding-left: 40px;
	}

	#usericon a {
		padding-right: 120px;
		padding-left: 40px;
	}

	#hamb:checked ~ #menu {
    	max-height: 700px;
	}	
}

/*footer 360*/

@media (max-width:360px) {

	footer {
		padding-top: 0;
		padding-bottom: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		font-size: 18px;
	}

	footer nav {
		margin-bottom: 160px;
	}

	footer nav ul {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		padding-left: 0;
		margin-top: 0;
	}

	footer nav ul li {
		list-style: none;
		text-align: center;
		padding-right: 0;
		padding-left: 0;
		padding-bottom: 15px;
	}

	#footer3 {
		padding: 20px;
	}

	#footer3 ul {
		margin-right: auto;
		margin-left: auto;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-self: center;
		text-align: center;
	}

	#footer3 ul li {
		text-align: center;
	}

	#copyright {
		text-align: center;
	}
}