
/*--------------------Base--------------------*/

/*Info*/
/*base styles for every page in the website*/

/*----------Largest Containers----------*/

html {
	font-family: arial;
	margin: 0px;
}

body {
	margin: 0px;
	padding: 0px;
	background: url("cansBackground.png");
	background-repeat: repeat;
	background-size: 250px;
	background-attachment: fixed;
}

/*----------Logo Header----------*/

img.logoLandscape {
	display: block;
	width: 90%;
	max-width: 800px;
	min-width: 460px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

img.logoPortrait {
	display: none;
	width: 90%;
	max-width: 800px;
	min-width: 460px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

/*<----------Navbar---------->*/

/*--Physical Bar--*/

div.nav {
	height: 50px;
	max-width: 800px;
	min-width: 460px;
	margin: auto;
	width: 90%;
	background-color: #900000;
	position: sticky;
	top: -1px;
	border-radius: 10px 10px 0px 0px;
	z-index: 11;
	overflow: hidden;
}

div.navSides {
	position: fixed;
	top: 0px;
	height: 48px;
	width: 100%;
	background-color: #900000;
	display: none;
	box-shadow: 0px 0px 30px;
	z-index: 10;
}

/*--List of Links--*/

ul.navLinks {
	list-style-type: none;
	display: inline;
}	

li.navLink {
	float: left;
	margin-top: 10px;
	margin-left: 20px;
	height: 0;
	border-left: 20px solid #900000;
	border-right: 20px solid #900000;
	border-bottom: 40px solid #666666;
}

/*--Tab Widths--*/

#homeTab {
	width: 45px;
}
	
#drinksTab {
	width: 50px;
}
	
#ingredientsTab {
	width: 80px;
}
	
/*--Link Style For Active Page--*/

a.navLinkActive {
	text-decoration: none;
	text-align: center;
	color: black;
	display: block;
	padding: 10px 20px 11px 20px;
	margin-left: -20px;
	background-color: white;
	font-weight: bold;
	border-bottom: 1px solid white;
}

/*--Link Styles for Inactive Pages--*/

a.navLinkInactive:link, a.navLinkInactive:visited {
	text-decoration: none;
	text-align: center;
	color: white;
	display: block;
	padding: 10px 20px 11px 20px;
	margin-left: -20px;
	background-color: transparent;
	
}

a.navLinkInactive:hover {
	background-color: #666666;
	font-weight: bold;
}

a.navLinkInactive:active {
	color: black;
	background-color: #434343;
}

/*--Link Widths--*/

#homeLink {
	width: 45px;
}
	
#drinksLink {
	width: 50px;
}
	
#ingredientsLink {
	width: 80px;
}

/*----------Content----------*/

div.content {
	min-height: 100vh;
	width: 90%;
	max-width: 800px;
	min-width: 460px;
	margin: auto;
	background-color: white;
	box-shadow: 0px 0px 100px;
}

/*--bulletin--*/

div.bulletin {
	
}

p.bulletin {
	padding: 10px;
	margin: 0px;
}	

/*----------Footer----------*/

/*--Physical Bar--*/

div.footer {
	width: 100%;
	background-color: #212121;
	height: 50px;
	position: fixed;
	bottom: 0px;
	box-shadow: 0px 0px 30px;
}

/*--Container for Contents--*/

div.footerContents {
	width: 90%;
	max-width: 800px;
	min-width: 460px;
	margin: auto;
	height: 100%;
}

/*--List of Contents--*/

ul.footerContents {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: inline;
}	

/*--Links Floated Left--*/




/*--Links Floated Right--*/

li.footerRight {
	margin: 10px;
	padding: 0px;
	width: 30px;
	height: 30px;
	border: 1px solid white;
	display: block;
	float: right;
}

a.backToTop {
	text-decoration: none;
	color: white;
	padding: 1px 3px 2px 3px;
	font-size: 1.5rem;
	position: relative;
	bottom: 2px;
}	

/*----------Media Queries----------*/

/*--Logo Landscape to Portrait--*/

@media only screen and (orientation: portrait),
	   only screen and (max-width: 700px) {
	img.logoLandscape {
		display: none;
	}
	
	img.logoPortrait {
		display: block;
	}
}

@media only screen and (max-width: 520px) {
	img.logoLandscape {
		margin-left: 20px;
		margin-right: 20px;
	}
	
	img.logoPortrait {
		margin-left: 20px;
		margin-right: 20px;
	}
	
	div.nav {
		margin-left: 20px;
		margin-right: 20px;
	}
	
	div.whiteBar {
		margin-left: 20px;
		margin-right: 20px;
	}
	div.content {
		margin-left: 20px;
		margin-right: 20px;
	}
	
	div.footerContents {
		margin-left: 20px;
		margin-right: 20px;
	}
}	
