/* 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;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	background-color: rgb(169, 82, 193);
}
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;
}

/* Text Tags */
h1 {
	text-align: center;
	font-size: 138px;
	margin-bottom: 10px;
	margin-top: 10px;
	font-family: "Cookie", serif;
	text-decoration: underline black 5px;
}
h2 {
	text-align: center;
	font-size: 96px;
	margin-bottom: 10px;
	text-decoration: underline black 3px;
}
h3 {
	text-align: left;
	font-size: 64px;
	margin-bottom: 10px;
}
p {
	font-size: 24px;
	line-height: 30px;
}
a {
	color: inherit;
}


/* Header */
header {
	display: flex;
	flex-flow: nowrap row;
	background-color: white;
	align-items: center;
	position: sticky;
	width: 100%;
	height: 80px;
	top: 0;
	box-shadow: 0 0 10px rgb(116, 116, 116);
}
header img {
	height: 75px;
	width: auto;
	padding: 10px
}

.hamburgerIcon {
	height: 175px;
	width: auto;
	color: blue;
	background-color: violet;
}

/* Navigation (this sounds fun) */
nav {
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: nowrap row;
	justify-content: space-around;
	font-size: 24px;
}
nav a {
	width: 100%;
	height: 100%;
	color: black;
	transition: background-color 100ms;
	display: flex;
	justify-content: center;
}
nav p {
	margin: auto;
	text-align: center;
}
nav a:hover {
	background-color: rgb(231, 229, 231);
	cursor: pointer;
}
nav a:active {
	background-color: rgb(212, 212, 212);
}


/* Index/Home grid */
body > div {
	background-color: rgba(255, 255, 253, 1);
	width: 90%;
	margin: auto;
}

/* Webpage Title */
#indexTitle {
	display: flex;
	flex-flow: nowrap column;
	align-items: center;
}
#indexTitle p {
	width: 70%;
	margin: 10px;
}

/* Next Gig Section */
#NextGigBlurb {
	display: flex;
	flex-flow: nowrap column;
	align-items: center;
}
#NextGigBlurb img {
	width: auto;
	max-height: 600px;
	margin-left: 15px;
	box-shadow: black 0 0 5px
}
#NextGigBlurb p {
	width: 60%;
	margin: 10px;
	text-align: center;
}

/* Song Examples/samples Section */
#SongSamplesBlurb {
	display: flex;
	flex-flow: nowrap column;
	align-items: center;	
}
#SongSamplesBlurb div {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	gap: 15px;
	width: 100%
}
#SongSamplesBlurb iframe {
	width: 560px;
	height: 315px;
	/* 112 x 63 */
}

/* Pictures Section */
#PicturesBlurb {
	display: flex;
	flex-flow: column;
	align-items: center;
}
#PicturesBlurbGrid {
	display: flex;
	flex-flow: wrap;
	gap: 15px;
	width: 100%;
	margin: auto;
	justify-content: center;
	align-items: center;
	justify-items:center;
}
#PicturesBlurbGrid img {
	width: auto;
	max-height: 300px;
	box-shadow: black 0 0 5px
}
/* button */
.button {
	background-color: rgb(255, 208, 0);
	padding: 15px 40px;
	margin: 10px;
	text-align: center;
	width: fit-content;
	font-size: 24px;
	border-radius: 3px;
	transition: 100ms;
}
.button:hover {
	background-color: rgb(200, 0, 255);
	cursor: pointer;
}
.button:active {
	background-color: purple;
}


/* Footer */
footer {
	width: 100%;
	display: flex;
	flex-flow: nowrap row;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	background-color: rgb(43, 23, 53);
	color: white;
	padding: 10px 0;
	margin-top: 20px;
}
footer p {
	font-size: 16px;
}


/* Media Queries */
@media screen and (max-width: 1023px) and (min-width: 411px) {
	/* Tags */
	h1 {
	text-align: center;
	font-size: 94px;
	margin-bottom: 10px;
	}
	h2 {
		text-align: center;
		font-size: 56px;
		margin-bottom: 10px;
	}
	h3 {
		text-align: left;
		font-size: 32px;
		margin-bottom: 10px;
	}
	p {
		font-size: 16px;
		line-height: 30px;
	}
	a {
		color: inherit;
	}

	#indexTitle img {
		width: 80%;
		height: auto;
	}

	#NextGigBlurb img {
		max-width: 80%;
	}
	#SongSamplesBlurb div {
		flex-flow: nowrap column;
		align-items: center;
	}
	#SongSamplesBlurb iframe {
		max-width: 336px;
		max-height: 189px;
	}
	/* Pictures Section */
	#PicturesBlurbGrid img {
		width: auto;
		max-height: 180px;
		box-shadow: black 0 0 5px
	}

	/* Footer */
	footer p {
		font-size: 13px;
		padding: 0
	}
	footer {
		flex-flow: row wrap;
		gap: 10px;
	}
	footer div:first-child {
		order: 1;
	}
}

@media screen and (max-width: 410px) {
	/* Tags */
	h1 {
		text-align: center;
		font-size: 66px;
		margin-bottom: 10px;
	}
	h2 {
		text-align: center;
		font-size: 50px;
		margin-bottom: 10px;
	}
	h3 {
		text-align: left;
		font-size: 28px;
		margin-bottom: 10px;
	}
	p {
		font-size: 12px;
		line-height: 18px;
	}
	a {
		color: inherit;
	}
	.button {
		font-size: 14px;
	}

	#indexTitle img {
		width: 80%;
		height: auto;
	}

	#NextGigBlurb img {
		max-width: 80%;
	}
	#SongSamplesBlurb div {
		flex-flow: nowrap column;
		align-items: center;
	}
	#SongSamplesBlurb iframe {
		max-width: 200px;
		max-height: 120px;
	}
	/* Pictures Section */
	#PicturesBlurbGrid img {
		width: auto;
		max-height: 80px;
		box-shadow: black 0 0 5px
	}

	/* Footer */
	footer p {
		font-size: 10px;
		padding: 0
	}
	footer {
		flex-flow: column nowrap;
		gap: 10px;
	}

}