@font-face {
	font-family: 'Roboto';
	src: url('/fonts/roboto/roboto-variablefont_wdthwght-webfont.woff2') format('woff2'),
		url('/fonts/roboto/roboto-variablefont_wdthwght-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto Italic';
	src: url('/fonts/roboto/roboto-italic-variablefont_wdthwght-webfont.woff2') format('woff2'),
		url('/fonts/roboto/roboto-italic-variablefont_wdthwght-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

:root {
	--orange1-brb: #dc6108;
	--orange2-brb: #b24d04;
	--blue-brb: #5d84a3;
	--black-brb: #0c2236;
}

body {
	background-color: #f7eee4;
	color: var(--black-brb);
	font-family: 'Roboto', Arial, sans-serif;
}

/* header styles */
header {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	padding: .5rem 0;
}

#bigrigbuddyLogoText {
	height: 4rem;
}

#headerAddress {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	gap: 1rem;
	font-style: normal;
}

#headerAddress div {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	gap: 1rem;
}

.headerIcon {
	width: 1.5rem;
	padding: .5rem;
	background-color: var(--orange1-brb);
	border-radius: 100rem;
}

.headerContact {
	padding: .5rem 0;
}

.headerContact a {
	text-decoration: none;
	color: unset;
}

/* nav bar styles */
nav {
	font-weight: bold;
	padding: 1rem;
}

#navBar {
	list-style-type: none;
	margin: 0 auto;
	width: 40rem;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	padding: 0;
}

#navBar li {
	flex: 1;
	background-color: var(--orange1-brb);
}

#navBar li a {
	text-decoration: none;
	color: whitesmoke;
	margin: 0 auto;
	text-align: center;
	padding: 1rem 0;
	display: block;
	transition: .2s;
}

#navBar li a:hover {
	background-color: var(--orange2-brb);
	transition: .2s;
}

/* main content styles */
main .homeMainContainer {
	display: flex;
	flex-flow: row nowrap;
	margin-top: 1rem;
	margin-bottom: 2rem;
}
#homeLeftDiv {
	width: 50%;
	padding: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column nowrap;
}
#homeLeftDiv h2 {
	font-size: 2rem;
}
#homeTruckLogoDiv {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}
#homeTruckLogoDiv #homeTruckLogo {
	width: 90%;
}

/* footer styles */
#homeFooter {
	display: flex;
	justify-content: space-around;
	align-items: center;
	border-top: 2px solid var(--black-brb);
	width: 80%;
	margin: 0 auto;
	padding-top: 1rem;
}
#homeFooter > * {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
#footerDivOne {
	width: 33%;
}
#footerDivOne img {
	height: 4rem;
}
#footerNavBar {
	list-style-type: none;
	display: flex;
	gap: 2rem;
}
#footerDivTwo #footerNavBar li a {
	text-decoration: none;
	color: var(--orange1-brb);
}
#footerDivThree {
	gap: .5rem;
	margin-left: 3rem;
}
#footerDivThree img {
	width: 3rem;
}

/* media queries */
@media screen and (max-width: 950px) {
	#footerDivThree img {
		width: 2.5rem;
	}
	footer#homeFooter {
		flex-flow: row wrap;
		padding-top: 0rem;
	}
	#footerDivOne {
		min-width: 10rem;
	}
	#footerDivOne span {
		width: 100%;
	}
	#footerDivThree {
		justify-content: flex-end;
	}
}

@media screen and (max-width: 725px) {
	#navBar {
		flex-wrap: wrap;
		width: 100%;
	}
	#navBar li {
		min-width: 137px;
	}
}

@media screen and (max-width: 690px) {
	header {
		flex-direction: column;
		gap: 1rem;
		margin-bottom: 1rem;
		padding-bottom: 1rem;
		border-bottom: 2px solid var(--black-brb);
		width: 80%;
		margin: 0 auto;
	}
	#footerDivOne {
		min-width: 100%;
		text-align: center;
		padding-top: 1rem;
	}
	#footerDivTwo {
		min-width: 100%;
	}
	#footerDivThree {
		justify-content: center;
		margin-left: 0;
	}
}