/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&family=Hachi+Maru+Pop&family=Outfit:wght@100..900&display=swap');

html {
	font-size: 16px;
}

h2 {
	font-family: "DynaPuff", system-ui;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-variation-settings:
	  "wdth" 100;
	font-size: 2rem;
	color: #AA688D;
	text-shadow: .125rem .125rem .125rem rgba(0, 0, 0, 1),
		-.0625rem -.0625rem .0625rem rgba(255, 255, 255, 0.5);
}

p, #schedule ul li {
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 1.25rem;
}

nav {
	font-family: "Hachi Maru Pop", cursive;
	font-weight: 400;
	font-style: normal;
	font-size: 1.5rem;
	color: #AA688D;
}

a:link, a:hover, a:active, a:visited {
	color: #AA688D;
	text-decoration: none;
}

/* Styles */
/* Pastel pink for background? */
html {
	background-color: #EBF6EE;
}

main {
	margin: 3.75rem 2.5rem;
}

body {
	min-width: 320px;
}

/* Header */
header {
	margin: 3.75rem 0;
}

header img {
	height: 150px;
	width: 150px;
	display: block;
	margin: auto;
}

header nav {
	display: none;
}

header nav ul {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	list-style-type: none;
	padding: .5rem 0;
	margin: 0;
	height: 100%;
}

header nav ul li span, #left-icon, #right-icon {
	cursor: pointer;
}

/* Socials */
#socials {
	display: none;
}

#socials ul {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	padding: .5rem 0;
	margin: 0;
	height: 100%;
}

#socials img {
	max-height: 28px;
	width: auto;
}

#socials ul li {
	height: 28px;
}

#soc1, #soc4 {
	padding-right: .625rem;
}

#soc2, #soc3 {
	padding-right: 1.25rem;
}

#nav1, #nav4 {
	padding-left: .625rem;
}

#nav2, #nav3 {
	padding-left: 1.25rem;
}

#nav3, #nav4 {
	visibility: hidden;
}

/* Nav Icons */
#left-icon {
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-right: 20px solid #796b6b;
	border-bottom: 10px solid transparent;
}

#right-icon {
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-left: 20px solid #796b6b;
	border-bottom: 10px solid transparent;
}

/* Section Heading */
#section-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Hero */
#hero {
	display: none;
}

/* About */
main h2 {
	text-align: center;
	margin: .5rem 0;
}

#about p {
	text-align: center;
	margin: 0;
}

#about figure {
	margin: 1.5rem;
}

#about figure img {
	display: block;
	margin: auto;
	max-width: 100%;
}

/* Schedule */
#schedule {
	display: block;
}

#schedule ul {
	padding: 0;
}

#schedule ul li {
	text-align: center;
	list-style-type: none;
}

#schedule p {
	text-align: center;
}

/* Footer */
footer {
	background: #A34FAD url("assets/background.jpg") center/cover no-repeat;
}

footer p {
	text-align: center;
	margin: 0;
	padding: 1.25rem;
}

/* Breakpoint 425 */
@media screen and (min-width: 425px) {
	/* About */
	#about figure {
		max-width: 324px;
		margin: 1.5rem auto;
	}

	#about figure img {
		display: inline-block;
		max-width: 324px;
		height: auto;
	}
}

/* Breakpoint 640 */
/* Twitch has a mandatory minimum size for embedding the player.
   This breakpoint is for allowing it to appear on tablets large
   enough to display the player while still having comfortable
   margins. */
@media screen and (min-width: 640px) {
	/* Hero */
	#hero {
		background: #A34FAD url("assets/background.jpg") center/cover no-repeat;
		height: 400px;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 3.75rem 0;
	}

	#twitch-embed iframe {
		width: 644px;
		height: 300px;
	}

	/* Header */
	header {
		display: flex;
		justify-content: space-evenly;
	}

	#socials, header nav {
		display: block;
		width: 30%;
		flex-grow: 1;
	}

	/* Nav Icons */
	#left-icon, #right-icon {
		display: none;
	}

	/* Section Heading */
	#section-heading {
		display: block;
	}
}

/* Breakpoint 768 */
@media screen and (min-width: 768px) {
	/* About */
	main h2 {
		text-align: left;
	}

	#about p {
		text-align: left;
	}

	#about {
		display: flex;
		justify-content: space-between;
	}

	#about figure {
		margin: 0 2.5rem;
		max-width: none;
	}

	/* Schedule */
	#schedule p {
		text-align: left;
	}

	#schedule ul li {
		text-align: left;
	}
}


/* Breakpoint 1024 */
@media screen and (min-width: 1024px) {
	/* Styles */
	main {
		margin: 3.75rem;
	}

	/* Hero */
	#hero {
		height: 451px;
	}

	#twitch-embed iframe {
		width: 960px;
		height: 351px;
	}

	#schedule {
		display: flex;
		justify-content: space-between;
	}

	#schedule ul {
		line-height: 2.5rem;
		margin: 0;
	}

	#schedule p {
		width: 50%;
		margin: 0;
	}
}