/* Create global Defaults */
:root{
	--border-for-testing: black solid 0.2rem;
	--border-for-deploy: none 0.2rem;
	--osuwmc-font: arial,Helvetica Neue,Helvetica,sans-serif;
	--adb1-red:#f21336;
	--adb1-brown: #593b02;
	--adb1-orange: #f26430;
	--adb1-mauve: #f27e7e;
	--adb1-offwhite: #f2f2f2;
	--adb1-offwhite-shade: #ededed;
	--annabelle: #f8e4cc;
	--schedule-bg-color: #2196F3;
	--schedule-font: arial,Helvetica Neue,Helvetica,sans-serif;color: darkblue;
	--footer-font: arial,Helvetica Neue,Helvetica,sans-serif;color: darkblue;
	--page-font: Georgia,Times,Times New Roman, serif;
	--sidebar-font: arial,Helvetica Neue,Helvetica,sans-serif;
	--schedule-font-style: oblique;
	--sidebar-font-style: oblique;
	--darkmode-light: #ffffff;
	--darkmode-dark: #000000

}
html{
	font-size: 1.2vw;
	scroll-behavior: smooth;
	background-color: var(--adb1-red);
}
body{
	min-height: 100vh;
}

*{
	margin: 0;  padding: 0rem; 
	grid-gap: 0;
	box-sizing: border-box;
}

#largeView:not(.active) {display: none;}
#smallView:not(.active) {display: none;}
#weekly-schedules:not(.active) {display: none;}
/*     #navMobile:not(.active) {display: none;} */
#socMediaBox:not(.active) {display: none;}


#largeView{
	display: grid;
	width: 98vw;
	font-family: var(--page-font);
	/*background-color: var(--adb1-red);*/
	grid-template-areas: 
	"br br br br br br br br br br br br"
	"sb sc sc sc sc sc sc sc sc sc sc sc"
	"ft ft ft ft ft ft ft ft ft ft ft ft"
	;
}
#lg-banner-container{
	font-size: 1.2rem;
	grid-area: br;
	display: flex;
	width: 98vw;
	align-items: center;
	height: auto;
/*	background-color: var(--adb1-red);*/
	color: var(--adb1-offwhite);
}
#imgBox{
/*	background-color: var(--adb1-red);*/
	width: 30vw;
	padding: 10px;
	flex-basis: 0;
	flex-grow: 1;
	display: grid;  /* Trick to center img in box */
	align-items: center;
	justify-content: center;
}
#sm-venueBox, #lg-venueBox{
	margin: 10px;
	color: var(--annabelle);
	flex-basis: 0;
	flex-grow: 2;
	font-size: 1.3em;
}
#lg-venueBox{
	width: 45vw;
}
#sm-venueBox{
	width: 80vw;
}
#venueIntro{
	padding-left: 10%;
	text-align: left;
	font-size: 1.3em;
}
.venueName{
font-size: 1.7em;
text-align: center;
font-family: var(--osuwmc-font);
}
.venueByMFV{
padding-right: 15%;
font-size: 1.3em;
text-align: right;
}
#todays-date{
	font-size: 1.1em;
	text-align: :center;
}
#schedule-container{
	width:100%;
	display: grid;
	background-color: var(--adb1-orange);
	grid-template-columns: 1.3fr 1fr 1fr 1fr 0.5fr 0.5fr 1fr 1fr;
	grid-template-rows: auto;  
	grid-column-gap: 0.2rem ;
	font-size: 1.1rem;
	grid-area: sc;
}
.schedItem{
	justify-items: left;
	padding-left: 6px;
	font-family: var(--schedule-font);
	font-style: var(--schedule-font-style);
	background: linear-gradient(var(--adb1-mauve),var(--adb1-orange));
	max-height:100px;
        min-height:2.2em;
	display:grid;
	align-items: center;
}
.weekday{
	justify-items: left;
	padding-left: 6px;
	font-family: var(--schedule-font);
	font-style: var(--schedule-font-style);
	background: linear-gradient(var(--adb1-mauve),var(--adb1-orange));
	max-height:100px;
        min-height:2.2em;
	display:grid;
	align-items: center;
}
.schedItem:hover,.weekday:hover{
	font-size: 1.4rem;
	font-weight: bold;
}
.schedItem.collapse,.weekday.collapse{
	width:20px;
}
 #sidebar-container{
 	margin-right: 0.2rem;
 	margin-left: 0.1rem;
  display: flex;
	flex-direction: column;
  flex: 1;
  justify-content: space-between;
  font-family: var(--sidebar-font);
	background-color: var(--adb1-orange);
	color: var(--adb1-offwhite);
	grid-area: sb;
}
.sm-icon{
height: 1rem;
}

.sbItem{
	text-align: left;
	background-color: var(--adb1-mauve);
	font-family: var(--sidebar-font);
	color: var(--adb1-red);
	font-weight: bold;
	padding: 1rem;
	padding-left: 10px;
	margin-left:10px;
}
.sbFiller{
	height: 40px;
	background: linear-gradient(var(--adb1-mauve),var(--adb1-red));
	margin-left:10px;
}
.sb1{
	background:linear-gradient(var(--adb1-red),var(--adb1-mauve));
	margin-left:10px;
}


#smallView{
/*	background-color: var(--adb1-red);*/
	display: grid;
	grid-template-areas: 
	"sm sm sm sm sm sm sm"
	"td td td td td td td"
	"tm tm tm tm tm tm tm"
	"ll ll ll ll ll ll ll"
	"ft ft ft ft ft ft ft";
}	


#todays-date{
	grid-area: td;
	padding: 10px;
	height: fit-content;
	text-align: center;
	font-size: 4rem;
	color: var(--annabelle); 
}
#todays-message{
	grid-area: tm;
	padding: 0;
	height: fit-content;
	text-align: center;
	font-size: 3rem;
	color: var(--annabelle); 
}
#footer {
	grid-area: ft;
/*	background-color: var(--adb1-red);*/
	max-height: fit-content;
	text-align: center;
	font-size: 2.5vh;
	height: 10vh;
	font-family: var(--footer-font);
	color: var(--adb1-mauve);
}
#location-list{
	grid-area: ll;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	background:linear-gradient(var(--adb1-red),var(--adb1-orange));
	max-height: 80vh;
	font-family: arial;
}
.weekly-schedules{
	display: inline-grid;
	grid-area: ws;
}
.customerLocation{
	padding: 2vh;
	display: flex;
	flex-direction: column;
	height: auto;
	font-size: 5vh;
	font-family: arial;
	padding-top: 5vh;
	background:linear-gradient(var(--adb1-offwhite),var(--adb1-orange));
	;
	color: var(--adb1-red);
	font-weight: bold;
}
.dName{
	padding-top: 5px;
	padding-left: 15px;
	text-align: left;
	font-family: arial;
	font-size: 3vh;
	color: var(--adb1-brown);
}
.tName{
	font-family: var(--page-font);
	color: var(--adb1-brown);
	font-weight: bold;
	text-align: center;
	font-size:4vh;
	padding-bottom: 5px;
}
.locBanner{
	height: 3vh;
}
.locDate{
	height: 3vh;
}
.weekList{
	display: flex;
	flex-direction: column;
}
.locDay{
	height: 5vh;
}
.locTruck{
	height: 5vh;	
}

.sm-icon{
	height: 5rem;
}
#sm-banner-container{
	font-size: 2.0rem;
	grid-area: sm;
	display: flex;
	max-height: fit-content;
}
.locChoice{
	text-decoration: none;
	background:linear-gradient(var(--adb1-offwhite),var(--adb1-orange));
	color: var(--adb1-brown);
	font-weight: bold;
	text-align: left;
	font-size: 5rem;
	min-height: 8rem;
	max-height: 16rem;
	padding-left: 1.5rem;
	margin: 0.5rem;
	border: none;
	width: 98%;
	display: block;    //increase click target area
}
.locChoice:hover{
	font-weight:bold ;
}
.locSched{
	height: 10vh;
	font-size: 5rem;
}
#location-list{
	display: inline-block;
}
.sbItem{
	font-size: 1rem;
	font-style: var(--sidebar-font-style);
}
.returnButton{
  padding-top: 5px;
	background-color: var(--adb1-orange);
	color: var(--adb1-brown);
	height: 4 vh;
	font-size: 3vh;
	border-radius: 10px;
	display: block;
}
#navMobile{
	grid-area: nm;

	flex-basis: 0;
	flex-grow: 1;
	display: grid;  /* Trick to center img in box */
	align-items: center;
	justify-content: center;
}

#nav-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all .2s ease-in-out;
  /*border: 3px solid #fff; */
}

.nav-btn_burger {
  width: 50px;
  height: 6px;
  background: var(--adb1-offwhite);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255,101,47,.2);
  transition: all .2s ease-in-out;
}
.nav-btn_burger::before,
.nav-btn_burger::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 6px;
  background: var(--adb1-offwhite);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255,101,47,.2);
  transition: all .2s ease-in-out;
}
.nav-btn_burger::before {
  transform: translateY(-16px);
}
.nav-btn_burger::after {
  transform: translateY(16px);
}
/* ANIMATION */
.nav-btn.open .nav-btn_burger {
  transform: translateX(-50px);
  background: transparent;
  box-shadow: none;
}
.nav-btn.open .nav-btn_burger::before {
  transform: rotate(45deg) translate(35px, -35px);
}
.nav-btn.open .nav-btn_burger::after {
  transform: rotate(-45deg) translate(35px, 35px);
}
.socMediaBox {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	flex-basis: 0;
	flex-grow: 1;

	/*flex: 1;*/
	justify-content: space-between;
	align-content: center;
/*	background-color: var(--adb1-red);*/
	color: var(--adb1-orange);
	max-height: 10px;
}














