/*
    Ivy Cassidy
    11/6/2023
    Made for Mr. Erikson's Sophmore Web Design class of 2023
*/

/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}

/* End of CSS Reset */

body {
	background-color: rgb(20, 17, 32);
}

header {
	background-color: rgb(48, 45, 66);
	box-shadow: 0px 4px 11px 0px rgba(22, 17, 49, 0.75);
	margin-bottom: 25px;
	position: sticky;
	top: 0;
}

header section {
	display: grid;
	grid-template-columns: 1fr 1fr 6fr;
	margin: 0 25px;
	height: 125px;
	grid-template-rows: 1fr 1fr;
}

header section img {
	grid-row: 1/2;
	width: 300px;
	margin: auto;
	display: block;
}

#navigation {
	display: none;
}

#mobile-navigation {
	grid-column: 1/2;
	grid-row: 2/3;
	display: none;
	justify-content: space-around;
	align-items: center;
	font-size: 35px;
	text-align: left;
	flex-direction: column;
	z-index: 1;
	padding: 15px;
	background-color: rgb(37, 34, 53);
	box-shadow: 0px 4px 11px 0px rgba(48, 45, 66, 0.5);
}

#mobile-navigation a {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	transition: 0.25s;
	text-decoration: none;
	font-family: 'Yanone Kaffeesatz', sans-serif;
	margin: 10px 0;
}

#menu-button {
	display: block;
	color: #6adee7;
	font-size: 40px;
	margin: 40px -15px;
	text-align: center;
	grid-column: 3/4;
	grid-row: 1/2;
}

#mobile-navigation .visited {
	border-bottom: 5px solid rgb(118, 137, 199);
	margin-bottom: 5px;
	text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
}

#mobile-navigation .visited h2 {
	margin-top: 5px;
}

#mobile-navigation a h2 {
	width: 100%;
	color: rgb(177, 190, 192);
}

.img-section {
	display: block;
}

.img-section img {
	display: none;
}

.content section article {
	margin-left: 0;
}

.content section article span {
	margin-left: 5px;
	color: rgb(118, 137, 199);
}

.content section article input {
	width: 90%;
	height: 30px;
	font-size: 17px;
	padding: 7px 10px;
	border: none;
	background-color: rgb(68, 65, 92);
	color: rgb(177, 190, 192);
	margin: 10px 0;
	transition: 0.25s;
	font-family: 'Open Sans', sans-serif;
}

.content section article input:hover, .content section article input:focus {
	background-color: rgb(80, 83, 109);
}

.content section article p {
	margin: 10px 0;
}

.content section article textarea {
	width: 90%;
	height: 30px;
	font-size: 17px;
	padding: 7px 10px;
	border: none;
	background-color: rgb(68, 65, 92);
	color: rgb(177, 190, 192);
	margin: 10px 0;
	transition: 0.25s;
	font-family: 'Open Sans', sans-serif;
}

#send-button {
	width: 96%;
	height: 50px;
}

.content section article h4 {
	font-family: 'Open Sans', sans-serif;
	color: rgb(118, 137, 199);
	font-size: 18px;
}

#address {
	display: none;
}

#images {
	display: none;
}

#images-keep {
	display: grid;
}

#images-keep iframe {
	width: 100%;
	height: 100%;
}

.content {
	background-color: rgb(48, 45, 66);
	margin: 25px 15px;
	padding: 50px;
}

.content h1 {
	font-family: 'Edu TAS Beginner', cursive;
	color: rgb(177, 190, 192);
	text-align: center;
	font-size: 45px;
	text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
}

.content section {
	margin: 25px 0;
	color: rgb(177, 190, 192);
}

.content section h2 {
	font-family: 'Yanone Kaffeesatz', sans-serif;
	font-size: 35px;
	margin: 40px 0;
	text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
}

.content section p {
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
	line-height: 35px;
}

.content section h3 {
	font-family: 'Yanone Kaffeesatz', sans-serif;
	font-size: 30px;
	margin: -10px 0 10px 0;
}

footer {
	width: 100%;
	padding: 25px 0;
	margin-top: 50px;
}

footer h2 {
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	padding: 5px 0;
	color: rgb(177, 190, 192);
	font-size: 17px
}

footer h2 i {
	font-size: 26px;
	transition: 0.3s;
}

/* Tablet */
@media screen and (min-width: 411px) and (max-width: 1023px) {
	/* 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;
	}
	/* HTML5 display-role reset for older browsers */
	article, aside, details, figcaption, figure, 
	footer, header, hgroup, menu, nav, section {
		display: block;
	}
	body {
		line-height: 1;
	}
	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;
	}

	/* End of CSS Reset */

	#mobile-navigation {
		display: none;
		width: 0;
		height: 0;
		opacity: 0;
	}

	#menu-button {
		display: none;
	}

	body {
		background-color: rgb(20, 17, 32);
	}

	header {
		background-color: rgb(48, 45, 66);
		box-shadow: 0px 4px 11px 0px rgba(48, 45, 66, 0.5);
		margin-bottom: 25px;
		position: relative;
	}

	header section {
		display: grid;
		grid-template-columns: 1fr 10fr;
		margin: 0 25px;
		height: 125px;
	}

	header section img {
		grid-row: 1/3;
		width: 200px;
		margin: auto;
		display: block;
	}

	#navigation {
		grid-column: 2/3;
		grid-row: 1/3;
		display: flex;
		justify-content: space-around;
		align-items: center;
		font-size: 30px;
		text-align: center;
		flex-direction: row;
		z-index: 1;
		padding: 0;
		background-color: transparent;
		box-shadow: none;
	}

	#navigation a {
		height: 100%;
		width: 100%;
		display: flex;
		align-items: center;
		transition: 0.25s;
		text-decoration: none;
		font-family: 'Yanone Kaffeesatz', sans-serif;
	}

	#navigation .visited {
		border-bottom: 5px solid rgb(118, 137, 199);
		margin-bottom: 5px;
		text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
	}

	#navigation .visited h2 {
		margin-top: 5px;
	}

	#navigation .visited:hover {
		background-color: rgb(66, 62, 87);
		border-bottom: 10px solid rgb(118, 137, 199);
		margin-bottom: 10px;
		text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
	}

	#navigation a h2 {
		width: 100%;
		color: rgb(177, 190, 192);
	}

	main {
		display: grid;
		grid-template-columns: 100%;
		margin: 0 25px;
	}

	.content {
		background-color: rgb(48, 45, 66);
		margin: 25px;
		padding: 50px;
		animation-name: appear;
		animation-duration: 0.5s;
		opacity: 0;
		animation-fill-mode: both;
	}

	@keyframes appear {
		from {
			opacity: 0.25;
			transform: scale(0.5);
		}
		to {
			opacity: 1;
			transform: scale(1);
		}
	}

	.content h1 {
		font-family: 'Edu TAS Beginner', cursive;
		color: rgb(177, 190, 192);
		text-align: center;
		font-size: 50px;
		text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
	}

	.content section {
		margin: 50px 0;
		color: rgb(177, 190, 192);
	}

	.content section h2 {
		font-family: 'Yanone Kaffeesatz', sans-serif;
		font-size: 40px;
		margin: 20px 0;
		text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
	}

	.content section p {
		font-family: 'Open Sans', sans-serif;
		font-size: 25px;
		line-height: 35px;
	}

	.content section h3 {
		font-family: 'Yanone Kaffeesatz', sans-serif;
		font-size: 30px;
		margin: -10px 0 10px 0;
	}

	.content section article {
		margin-left: 15%;
	}

	.content section article span {
		margin-left: 5px;
		color: rgb(118, 137, 199);
	}

	.content section article input {
		width: 80%;
		height: 30px;
		font-size: 20px;
		padding: 7px 10px;
		border: none;
		background-color: rgb(68, 65, 92);
		color: rgb(177, 190, 192);
		margin: 10px 0;
		transition: 0.25s;
		font-family: 'Open Sans', sans-serif;
	}

	.content section article input:hover, .content section article input:focus {
		background-color: rgb(80, 83, 109);
	}

	.content section article p {
		margin: 10px 0;
	}

	.content section article textarea {
		width: 80%;
		height: 30px;
		font-size: 20px;
		padding: 7px 10px;
		border: none;
		background-color: rgb(68, 65, 92);
		color: rgb(177, 190, 192);
		margin: 10px 0;
		transition: 0.25s;
		font-family: 'Open Sans', sans-serif;
	}

	#send-button {
		width: 84%;
		height: 50px;
	}

	.content section article h4 {
		font-family: 'Open Sans', sans-serif;
		color: rgb(118, 137, 199);
		font-size: 18px;
	}

	#address {
		display: none;
	}

	.img-section {
		display: block;
	}
	
	.img-section img {
		display: none;
	}

	#images {
		display: none;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		animation-delay: 0.1s;
	}

	#images-keep {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		animation-delay: 0.1s;
	}

	#images-keep iframe {
		width: 100%;
		grid-column: 1/3;
	}

	footer {
		width: 100%;
		padding: 25px 0;
		margin-top: 50px;
	}

	footer h2 {
		font-family: 'Open Sans', sans-serif;
		text-align: center;
		padding: 5px 0;
		color: rgb(177, 190, 192);
		font-size: 17px
	}

	footer h2 i {
		font-size: 26px;
		transition: 0.3s;
	}

	.keep {
		display: block;
	}
}

/* Desktop */
@media screen and (min-width: 1024px) {
	/* 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;
	}
	/* HTML5 display-role reset for older browsers */
	article, aside, details, figcaption, figure, 
	footer, header, hgroup, menu, nav, section {
		display: block;
	}
	body {
		line-height: 1;
	}
	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;
	}

	/* End of CSS Reset */

	#menu-button {
		display: none;
	}

	body {
		background-color: rgb(20, 17, 32);
	}

	header {
		background-color: rgb(48, 45, 66);
		box-shadow: 0px 4px 11px 0px rgba(48, 45, 66, 0.5);
		margin-bottom: 25px;
		position: relative;
	}

	header section {
		display: grid;
		grid-template-columns: 1fr 1fr 10fr;
		margin: 0 25px;
		height: 125px;
	}

	header section img {
		grid-row: 1/3;
		width: 450px;
		margin: auto;
		display: block;
	}

	#mobile-navigation {
		display: none;
		width: 0;
		height: 0;
		opacity: 0;
	}

	#navigation {
		grid-column: 3/4;
		grid-row: 1/3;
		display: flex;
		justify-content: space-around;
		align-items: center;
		font-size: 30px;
		text-align: center;
		flex-direction: row;
		padding: 0;
		background-color: rgb(48, 45, 66);
		box-shadow: none;
	}

	#navigation a {
		height: 100%;
		width: 100%;
		display: flex;
		align-items: center;
		transition: 0.25s;
		text-decoration: none;
		font-family: 'Yanone Kaffeesatz', sans-serif;
	}

	#navigation .visited {
		border-bottom: 5px solid rgb(118, 137, 199);
		margin-bottom: 5px;
		text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
		transition: 0.25s;
	}

	#navigation .visited h2 {
		margin-top: 5px;
	}

	#navigation a:hover {
		background-color: rgb(66, 62, 87);
		border-bottom: 10px solid rgb(101, 93, 168);
		margin-bottom: 10px;
		text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
	}

	#navigation .visited:hover {
		background-color: rgb(66, 62, 87);
		border-bottom: 10px solid rgb(118, 137, 199);
		margin-bottom: 10px;
		text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
	}

	#navigation a h2 {
		width: 100%;
		color: rgb(177, 190, 192);
	}

	main {
		display: grid;
		grid-template-columns: 60% 40%;
		margin: 0 25px;
	}

	.content {
		background-color: rgb(48, 45, 66);
		margin: 25px;
		padding: 50px;
		animation-name: appear;
		animation-duration: 0.5s;
		opacity: 0;
		animation-fill-mode: both;
	}

	#content-stretch {
		grid-column: 1/3;
		padding: 75px;
	}

	@keyframes appear {
		from {
			opacity: 0.25;
			transform: scale(0.5);
		}
		to {
			opacity: 1;
			transform: scale(1);
		}
	}

	.content h1 {
		font-family: 'Edu TAS Beginner', cursive;
		color: rgb(177, 190, 192);
		text-align: center;
		font-size: 50px;
		text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
	}

	.content section {
		margin: 50px 0;
		color: rgb(177, 190, 192);
	}

	.content section h2 {
		font-family: 'Yanone Kaffeesatz', sans-serif;
		font-size: 40px;
		margin: 20px 0;
		text-shadow: 0px 0px 10px rgba(165, 229, 245, 0.25);
	}

	.content section h3 {
		font-family: 'Yanone Kaffeesatz', sans-serif;
		font-size: 30px;
		margin: -10px 0 10px 0;
	}

	.content section p {
		font-family: 'Open Sans', sans-serif;
		font-size: 25px;
		line-height: 35px;
	}

	.img-section {
		display: grid;
		grid-template-columns: 2fr 1fr;
		grid-template-rows: fit-content fit-content fit-content;
	}

	.img-section h2 {
		grid-column: 1/2;
		grid-row: 1/2;
	}

	.img-section h3 {
		grid-column: 1/2;
		grid-row: 2/3;
	}

	.img-section p {
		grid-column: 1/2;
		grid-row: 3/4;
	}

	.img-section img {
		grid-column: 2/3;
		grid-row: 1/4;
		width: 75%;
		display: block;
		margin-left: 25px;
	}

	.content section article {
		margin-left: 220px;
	}

	.content section article span {
		margin-left: 5px;
		color: rgb(118, 137, 199);
	}

	.content section article input {
		width: 525px;
		height: 30px;
		font-size: 20px;
		padding: 7px 10px;
		border: none;
		background-color: rgb(68, 65, 92);
		color: rgb(177, 190, 192);
		margin: 10px 0;
		transition: 0.25s;
		font-family: 'Open Sans', sans-serif;
	}

	.content section article input:hover, .content section article input:focus {
		background-color: rgb(80, 83, 109);
	}

	.content section article p {
		margin: 10px 0;
	}

	.content section article textarea {
		width: 525px;
		height: 30px;
		font-size: 20px;
		padding: 7px 10px;
		border: none;
		background-color: rgb(68, 65, 92);
		color: rgb(177, 190, 192);
		margin: 10px 0;
		transition: 0.25s;
		font-family: 'Open Sans', sans-serif;
	}

	#send-button {
		width: 545px;
		height: 50px;
	}

	.content section article h4 {
		font-family: 'Open Sans', sans-serif;
		color: rgb(118, 137, 199);
		font-size: 18px;
	}

	.content section iframe {
		display: block;
		width: 75%;
		height: 350px;
		margin: 15px auto;
	}

	#address {
		display: none;
	}

	#images, #images-keep {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		animation-delay: 0.1s;
	}

	#images img {
		width: 100%;
	}

	#images .stretch, #images-keep .stretch {
		grid-column: 1/3;
	}

	#images-keep iframe {
		width: 100%;
	}

	#songlist #song-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		margin: 15px 0;
	}

	#songlist #song-container section {
		padding: 0 15px;
		margin: 15px;
	}

	#songlist #song-container section h2 {
		font-size: 35px;
	}

	#songlist #song-container section p {
		font-size: 22px;
	}

	footer {
		width: 100%;
		padding: 25px 0;
		margin-top: 50px;
	}

	footer h2 {
		font-family: 'Open Sans', sans-serif;
		text-align: center;
		padding: 5px 0;
		color: rgb(177, 190, 192);
		font-size: 17px
	}

	footer h2 i {
		font-size: 26px;
		transition: 0.3s;
	}

	footer a:hover h2 i {
		color: rgb(165, 229, 245);
	}
}