* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 16px;
	font-family: Arial;
}

:root {
	--special-font: "Times New Roman";
	--accent-color: hsl(276, 81%, 40%);
	--accent-hover-color: hsl(276, 81%, 30%);
	--nav-height: 40px;
	--content-spacing: 10px;
	--text-color: hsl(0, 0%, 100%);
	--text-hover-color: hsl(0, 0%, 85%);;
}

::placeholder {
	color: hsl(0, 0%, 0%);
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: hsl(0, 0%, 15%);
}

::-webkit-scrollbar-thumb {
	background: hsl(0, 0%, 10%);
}

::-webkit-scrollbar-thumb:hover {
	background: hsl(0, 0%, 7%);
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: hsl(0, 0%, 0%);
	color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 auto;
	width: 60%;
	font-family: var(--special-font);
	font-size: 4em;
	font-weight: 900;
	line-height: 85%;
	text-align: center;
}

.no-scroll {
	overflow: hidden;
}

button {
	border: none;
	cursor: pointer;
}

section .button {
	color: var(--text-color);
	padding: 0 50px;
	line-height: var(--nav-height);
	background: var(--accent-color);
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: color 0.4s, background-color 0.4s;
}

section .button:hover {
	color: var(--text-hover-color);
	background-color: var(--accent-hover-color);
}

/******************/
/* Navigation Bar */
/******************/

.nav {
	min-height: var(--nav-height);
	overflow: hidden;
	position: absolute;
	z-index: 1;
	width: 100%;
	transition: background-color 0.4s;
}

.nav .logo {
	margin: var(--content-spacing) auto;
	float: left;
	margin-left: var(--content-spacing);
	margin-right: 40px;
	height: var(--nav-height);
	transition: opacity 0.4s;
}

.nav .logo img {
	height: var(--nav-height);
}

.nav .logo:hover {
	opacity: 0.7;
}

.nav ul {
	margin: var(--content-spacing) auto;
	float: left;
	list-style-type: none;
	vertical-align: top;
	z-index: 1;
}

.nav ul li {
	display: inline-block;
	margin-right: 40px;
	line-height: var(--nav-height);
}

.nav a {
	color: var(--text-color);
	text-decoration: none;
	transition: color 0.4s;
}

.nav a:hover {
	color: var(--text-hover-color);
}

.nav .mobile-menu-icon {
	display: none;
	float: right;
	margin-right: 2%;
	padding-top: 20px;
	height: var(--nav-height);
	cursor: pointer;
}

.nav .mobile-menu-icon .bar {
	width: 30px;
	height: 3px;
	background: hsl(0, 0%, 100%);
	transition: transform 0.4s;
}

.nav .mobile-menu-icon:hover .bar {
	background: var(--text-hover-color);
}

.nav.active .mobile-menu-icon {
	position: relative;
	right: 4px;
}

.nav .mobile-menu-icon .bar:nth-child(2) {
	margin: 5px 0;
}

.nav.active .mobile-menu-icon .bar:nth-child(1) {
	transform: rotate(-45deg) translate(0, 10px);
}

.nav.active .mobile-menu-icon .bar:nth-child(2) {
	display: none;
}

.nav.active .mobile-menu-icon .bar:nth-child(3) {
	transform: rotate(45deg) translate(8px, -2px);
}

.nav.active ul {
	left: 0;
}

@media screen and (max-width: 947px) {
	.nav .logo,
	.nav ul li {
		margin-right: 20px;
	}
}

@media screen and (max-width: 807px) {
	.nav {
		margin-bottom: 0;
	}

	.nav.active {
		background-color: hsla(0, 0%, 0%, 0.92);
	}

	.nav .logo {
		margin-bottom: var(--content-spacing);
	}

	.nav ul {
		display: block;
		position: relative;
		left: -100%;
		width: 100%;
		text-align: center;
		transition: left 0.4s;
		margin: 0;
	}

	.nav ul li {
		display: block;
		margin: 0;
		height: 60px;
		line-height: 60px;
		padding-bottom: 1%;
	}

	.nav ul li a {
		display: block;
		height: 100%;
		width: 100%;
	}

	.nav ul li:first-child {
		margin-top: 5px;
	}

	.nav .mobile-menu-icon {
		display: inline-block;
	}
}

/*********/
/* Intro */
/*********/

section.intro {
	background-color: hsl(0, 0%, 0%);
	position: relative;
	z-index: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: max(700px, 100vh);
	padding: 40px 0;
}

section.intro h1 {
	font-size: 4em;
	width: 70%;
}

section.intro .artists {
	font-size: 1.5em;
	font-family: var(--special-font);
	width: 55%;
	text-transform: uppercase;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 5%;
}

.overlay {
	height: 100%;
	width: 100%;
	position: absolute;
	background: hsla(0, 0%, 0%, 0.4);
	top: 0;
	left: 0;
	z-index: -1;
}

section.intro video {
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	z-index: -2;
	object-position: top;
	opacity: 0.65;
}

section.intro .button {
	width: 400px;
	height: 60px;
	border-radius: 100px;
	line-height: 60px;
	text-align: center;
}

@media screen and (max-width: 810px) {
	section.intro h1 {
		width: 100%;
	}

	section.intro .artists {
		width: 90%;
	}
}

@media screen and (max-width: 400px) {
	section.intro .button {
		width: 200px;
	}
}

/***************/
/* Description */
/***************/

section.description {
	background: hsl(0, 0%, 0%);
	padding: max(40px, 5%) 0;
}

section.description p {
	width: 70%;
	line-height: 180%;
	margin: 0 auto;
	font-size: 1.3em;
	letter-spacing: -1px;
}



/*********/
/* Shows */
/*********/

section.shows {
	background-color: var(--accent-color);
	padding-top: max(40px, 5%);
	
}

section.shows h2 {
	color: var(--text-color);
	margin-bottom: max(40px, 5%);
}

section.shows .show {
	border-bottom: 1px solid #944CC4;
	min-height: 320px;
	display: grid;
	grid-template-columns: 300px 1fr 400px;
	align-items: center;
}

section.shows .show:last-of-type {
	border: none;
}

section.shows .show span {
	font-family: var(--special-font);
}

section.shows .show .date-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 10px solid white;
	margin: 13%;
	width: 222px;
	height: 222px;
}

section.shows .show .date-container span {
	font-size: 3.75em;
}

section.shows .show .date-container .time {
	font-size: 1.875em;
}

section.shows .show .place-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 20px;

}

section.shows .show .place-container .city {
	font-size: 2.5em;
}

section.shows .show .place-container .place {
	font-size: 6.25em;
}

section.shows .show .map-container {
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

section.shows .show .map-container a {
	color: var(--text-color);
	text-decoration: none;
	text-align: center;
	width: 100%;
}

section.shows .show .map {
	height: 250px;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

@media screen and (max-width: 1300px) {
	section.shows .show .date-container span {
		font-size: 3em;
	}
	
	section.shows .show .date-container .time {
		font-size: 1em;
	}

	section.shows .show .place-container .city {
		font-size: 2em;
	}
	
	section.shows .show .place-container .place {
		font-size: 4em;
	}
}

@media screen and (max-width: 1100px) {
	section.shows .show .date-container span {
		font-size: 3em;
	}
	
	section.shows .show .date-container .time {
		font-size: 1em;
	}

	section.shows .show .place-container .city {
		font-size: 1em;
	}
	
	section.shows .show .place-container .place {
		font-size: 3em;
	}
}


@media screen and (max-width: 950px) {
	section.shows .show {
		grid-template-columns: 1fr;
		padding-bottom: 40px;
		margin-bottom: 40px;
	}

	section.shows .show:last-of-type {
		margin-bottom: 0;
	}

	section.shows .show .date-container {
		margin: 0 auto;
		border-width: 7px;
	}

	section.shows .show .place-container {
		margin: 40px 0;
		align-items: center;
		text-align: center;
	}

	section.shows .show .map-container {
		padding: 0;
	}
}

/**********/
/* Videos */
/**********/
section.videos {
	background: hsl(0, 0%, 0%);
	padding: var(--content-spacing);
	padding-bottom: calc(var(--content-spacing) * 2);
	text-align: center;
}

section.videos .container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	grid-gap: 30px;
	justify-items: center;
}

section.videos .video {
	width: 350px;
	height: 350px;
}

section.videos .video iframe {
	width: 100%;
	height: 100%;
}

section.videos button {
	margin-top: calc(var(--content-spacing) * 2);
	color: var(--text-color);
	background: none;
	border: 2px solid var(--text-color);
	transition: 0.4s;
}

section.videos button:hover {
	background: none;
	color: var(--text-hover-color);
	border-color: var(--text-hover-color);
}

/**********/
/* Photos */
/**********/

section.photos {
	background: hsl(0, 0%, 0%);
	padding-top: max(40px, 5%);
	padding-bottom: 10px;
	text-align: center;
	position: relative;
	z-index: 0;
}

section.photos h2 {
	margin-bottom: max(40px, 5%);
	color: var(--accent-color);
}

section.photos .container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 25vw;
	grid-gap: 10px;
	grid-auto-flow: dense;
	justify-items: center;
}

section.photos .img {
	width: 100%;
	height: 100%;
	background: gray;
	border-radius: 10px;
	overflow: hidden;
}

section.photos img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

section.photos .hide-on-mobile {
	display: inline;
}

section.photos .hide-on-desktop {
	display: none;
}

section.photos button {
	margin-top: calc(var(--content-spacing) * 2);
	background: none;
	border: 2px solid var(--accent-color);
	transition: 0.4s;
	color: var(--accent-color);
	margin: max(40px, 5%) 0;
	border-radius: 100px;
}

section.photos button:hover {
	background: none;
	border-color: var(--accent-hover-color);
	color: var(--accent-hover-color);
}

.column-span-1 {
	grid-column: span 1;
}

.column-span-2 {
	grid-column: span 2;
}

.column-span-3 {
	grid-column: span 3;
}

.column-span-4 {
	grid-column: span 4;
}

.column-span-5 {
	grid-column: span 5;
}

.row-span-1 {
	grid-row: span 1;
}

.row-span-2 {
	grid-row: span 2;
}

.row-span-3 {
	grid-row: span 3;
}

.row-span-4 {
	grid-row: span 4;
}

.row-span-5 {
	grid-row: span 5;
}

.img-left {
	object-position: left;
}

.img-right {
	object-position: right;
}

.img-top {
	object-position: top;
}

.img-bottom {
	object-position: bottom;
}

.img-top-third {
	object-position: center 33%;
}

.img-greg-square {
	object-position: 84% top;
}

.img-greg-portrait {
	object-position: 78% top;
	transform: scale(1.5);
}

.img-john-portrait {
	transform: scale(1.5);
}

.img-ken-portrait {
	object-position: 62% top;
}

.img-larry-portrait {
	object-position: 71% top;
}

@media screen and (max-width: 807px) {
	section.photos .container {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 33.3vw;
	}

	section.photos .hide-on-mobile {
		display: none;
	}

	section.photos .hide-on-desktop {
		display: inline;
	}

	.column-span-1 {
		grid-column: span 1;
	}
	
	.column-span-2 {
		grid-column: span 1;
	}
	
	.column-span-3 {
		grid-column: span 1;
	}
	
	.column-span-4 {
		grid-column: span 1;
	}
	
	.column-span-5 {
		grid-column: span 1;
	}
	
	.row-span-1 {
		grid-row: span 1;
	}
	
	.row-span-2 {
		grid-row: span 1;
	}
	
	.row-span-3 {
		grid-row: span 1;
	}
	
	.row-span-4 {
		grid-row: span 1;
	}
	
	.row-span-5 {
		grid-row: span 1;
	}
}

/**************/
/* CTA Banner */
/**************/

section.cta-banner {
	height: 75vh;
	padding: max(40px, 5%) 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-image: url("../images/badge-cta-bg.jpg");
	background-repeat: no-repeat;
	background-position: 0 35%;
	background-size: cover;
	z-index: 0;
	position: relative;
}

section.cta-banner h2 {
	color: hsl(0, 0%, 100%);
	width: 100%;
	margin-bottom: 30px;
}

section.cta-banner .container {
	height: 100%;
	float: left;
	display: flex;
	align-items: center;
}

section.cta-banner .container:nth-child(1) {
	width: 60%;
}

section.cta-banner .container:nth-child(2) {
	width: 40%;
	justify-content: left;
}

section.cta-banner .button {
	width: 500px;
	text-align: center;
	height: 60px;
	line-height: 60px;
	border-radius: 100px;
}

@media screen and (max-width: 700px) {
	section.cta-banner h2 {
		font-size: 3em;
	}

	section.cta-banner .button {
		width: 400px;
	}
}

@media screen and (max-width: 500px) {
	section.cta-banner h2 {
		font-size: 2em;
	}

	section.cta-banner .button {
		width: 300px;
	}
}

/*********/
/* Video */
/*********/

section.video {
	max-height: 100vh;
	overflow: hidden;
	margin-top: 20px;
	background-color: hsl(0, 0%, 0%);
}

section.video .container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}

section.video .container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 100vh;
}

/*********/
/* About */
/*********/

section.about {
	background: hsl(0, 0%, 0%);
	padding: 30px;
	padding-top: max(40px, 5%);
	padding-bottom: 0;
}

section.about h2 {
	color: var(--accent-color);
	margin-bottom: 20px;
}

section.about h3 {
	font-size: 3em;
	width: 100%;
	margin-bottom: 12px;
	text-align: left;
	color: var(--accent-color);
}

section.about p {
	line-height: 180%;
	margin-bottom: 10px;
}

section.about .about-badge {
	color: var(--text-color);
	padding-left: 30px;
	padding-right: 30px;
	width: 70%;
	margin: 0 auto;
	margin-bottom: max(40px, 5%);
}

section.about .about-member {
	overflow: hidden;
	padding: 30px 30px 0;
	color: hsl(0, 0%, 100%);
	border-bottom: 1px solid hsl(0, 0%, 27%);
}

section.about .about-member:first-of-type {
	border-top: 1px solid hsl(0, 0%, 27%);
}

section.about .about-member:last-child {
	border-bottom: none;
}

section.about .about-member img {
	float: right;
	margin: 10px 10px 0;
}

section.about .about-member:nth-child(even) img {
	float: left;
}

@media screen and (max-width: 700px) {
	section.about .about-badge {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	section.about h3 {
		font-size: 2em;
	}

	section.about .about-member img {
		float: none;
		max-width: 100%;
	}
}

/***********/
/* Contact */
/***********/

section.contact {
	padding: 30px;
	background-image: url("../images/trippy-background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	font-weight: 600;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 0;
	position: relative;
}

section.contact h2 {
	margin-bottom: 15px;
}

section.contact p {
	margin-bottom: 30px;
}

section.contact form {
	width: 80%;
	overflow: hidden;
	margin: 0 auto;
}

section.contact input {
	width: 100%;
	height: 50px;
	padding-left: 30px;
	padding-right: 30px;
	border: none;
	outline: none;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	background-color: hsla(0, 100%, 100%, 0.8);
}

section.contact .container {
	width: 49%;
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
}

section.contact label {
	display: block;
	text-align: left;
	color: red;
}

section.contact textarea {
	width: 100%;
	min-height: 100px;
	resize: none;
	padding: 20px 30px;
	margin-bottom: 2%;
	outline: none;
	border: none;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	background-color: hsla(0, 100%, 100%, 0.8);
}

section.contact .container:nth-of-type(2n) {
	margin-right: 0;
}

section.contact input[type="submit"] {
	width: 30%;
	min-width: 130px;
	background: var(--accent-color);
	color: var(--text-color);
	color: hsla(0, 100%, 100%, 0.8);
	font-weight: 600;
	transition: 0.4s;
	cursor: pointer;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	-webkit-appearance: none;
}

section.contact input[type="submit"]:hover {
	background: var(--accent-hover-color);
	color: var(--text-hover-color);
}

section.contact input[type="date"] {
	-webkit-appearance: none;
	-moz-appearance: none;
}

.error {
	color: red;
	margin-bottom: 10px;
}

section.contact .success {
	color: hsl(0, 0%, 100%);
	font-size: 2em;
}

@media screen and (max-width: 850px) {
	section.contact h2 {
		width: 100%;
	}

	section.contact .container {
		width: 100%;
		float: none;
		margin-right: 0;
	}
}

/**********/
/* Footer */
/**********/

footer {
	background: hsl(0, 0%, 0%);
	overflow: hidden;
	padding: 20px;
}

footer .container.links {
	width: 40%;
	float: left;
	margin-bottom: 10px;
	overflow: hidden;
}

footer .container.links .img {
	width: 50%;
	float: left;
	position: relative;
	top: 40px;
}

footer .container.links ul {
	width: 50%;
	float: left;
	color: var(--text-color);
	list-style-type: none;
}

footer .container.links ul li {
	margin-bottom: 5px;
}

footer .container.links ul li:first-child {
	font-weight: 600;
}

footer .container.links a:hover {
	color: var(--text-hover-color);
}

footer .container a {
	color: var(--text-color);
	text-decoration: none;
	transition: color 0.4s;
}

footer .container.cta {
	width: 60%;
	float: left;
	position: relative;
	top: 30px;
	overflow: hidden;
}

footer img {
	display: block;
	margin: 0 auto;
}

footer .logo {
	height: 30px;
	margin-bottom: 10px;
}

footer .container label {
	font-size: 2em;
	color: var(--text-color);
	display: block;
	margin-bottom: 5px;
}

footer .container input[type="email"],
footer .container input[type="text"] {
	width: 327px;
	background: var(--text-color);
	float: left;
	border: none;
	padding-left: 5px;
	margin-right: 5px;
	outline: none;
	border-radius: 0;
	-webkit-border-radius: 0;
}

footer .container input[type="text"] {
	width: 150px;
}

footer .container button {
	width: 90px;
	background: var(--accent-color);
	float: left;
	border: none;
	font-weight: 600;
	cursor: pointer;
	outline: none;
	color: var(--text-color);
	border-radius: 0;
	-webkit-border-radius: 0;
	-webkit-appearance: none;
	padding: 0;
	transition: color 0.4s, background-color 0.4s;
}

footer .container button:hover {
	background-color: var(--accent-hover-color);
	color: var(--text-hover-color);
}

footer .container input,
footer .container button {
	height: 40px;
}

footer .copyright {
	clear: both;
	font-size: 0.6em;
	color: var(--text-color);
}

footer .success {
	color: var(--text-color);
	font-size: 1.5em;
	width: 60%;
}

@media screen and (max-width: 1015px) {
	footer .container.links,
	footer .container.cta {
		width: 100%;
		float: none;
		display: block;
		margin: 0 auto;
	}

	footer .container.cta {
		text-align: center;
	}

	footer .container.cta input[type="email"],
	footer .container.cta input[type="text"],
	footer .container.cta button {
		float: none;
	}

	footer .copyright {
		margin-top: 50px;
	}

	footer .success {
		margin: 0 auto;
	}

}

@media screen and (max-width: 640px) {
	footer .container.cta input[type="text"],
	footer .container.cta input[type="email"],
	footer .container.cta button {
		width: 100%;
	}

	footer .container.cta input[type="email"],
	footer .container.cta input[type="text"] {
		margin-right: 0;
		margin-bottom: 5px;
	}

}

.video-thumbnails {
	display: grid;
	grid-template-columns: repeat(5, minmax(150px, 1fr));
	grid-gap: 10px;
	background-color: hsl(0, 0%, 0%);
	padding-top: 20px;
	padding-bottom: 20px;
}

.video-thumbnails .thumbnail {
	width: 100%;
	height: 100%;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.video-thumbnails .thumbnail.active {
	border: 2px solid var(--accent-color);
}

.video-thumbnails img {
	width: 100%;
	height: 100%;
	transition: opacity 0.4s;
}

.video-thumbnails .thumbnail-title {
	position: absolute;
	z-index: 2;
	color: white;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	transition: height 0.4s;
}

.video-thumbnails .thumbnail:hover img:not(.play-icon),
.video-thumbnails .thumbnail.active img:not(.play-icon) {
	opacity: 0.6;
}

.video-thumbnails .thumbnail:hover .play-icon,
.video-thumbnails .thumbnail.active .play-icon {
	bottom: 35%;
}

.video-thumbnails .thumbnail:hover .thumbnail-title,
.video-thumbnails .thumbnail.active .thumbnail-title {
	height: 80%;
}

.video-thumbnails .play-icon {
	width: 25px;
	height: auto;
	position: absolute;
	z-index: 2;
	left: 47%;
	bottom: -100%;
	transition: bottom 0.4s;
}


@media screen and (max-width: 1500px) {
	.video-thumbnails .thumbnail:hover .play-icon,
	.video-thumbnails .thumbnail.active .play-icon {
		bottom: 30%;
	}
}

@media screen and (max-width: 1275px) {
	.video-thumbnails .thumbnail:hover .play-icon,
	.video-thumbnails .thumbnail.active .play-icon {
		bottom: 25%;
	}
}

@media screen and (max-width: 1100px) {
	.video-thumbnails .thumbnail .play-icon {
		width: 20px;
	}
}

@media screen and (max-width: 960px) {
	.video-thumbnails .thumbnail:hover .play-icon,
	.video-thumbnails .thumbnail.active .play-icon {
		bottom: 20%;
	}
}

@media screen and (max-width: 807px) {
	.video-thumbnails {
		grid-template-columns: repeat(2, 1fr);
		/* grid-auto-rows: 33.3vw; */
	}

	.video-thumbnails .thumbnail:hover .play-icon,
	.video-thumbnails .thumbnail.active .play-icon {
		bottom: 35%;
	}
}

@media screen and (max-width: 640px) {
	.video-thumbnails .thumbnail:hover .play-icon,
	.video-thumbnails .thumbnail.active .play-icon {
		bottom: 30%;
	}
}


@media screen and (max-width: 520px) {
	.video-thumbnails .thumbnail:hover .play-icon,
	.video-thumbnails .thumbnail.active .play-icon {
		bottom: 25%;
	}
}

@media screen and (max-width: 420px) {
	.video-thumbnails .thumbnail:hover .play-icon,
	.video-thumbnails .thumbnail.active .play-icon {
		bottom: 20%;
	}
}

@media screen and (max-width: 400px) {
	section.intro h1 {
		font-size: 3em;
	}
}

.g-recaptcha div {
	margin: 0 auto;
	margin-bottom: 2%;
}