@font-face {
	font-family: 'Titania';
	src: url('/fonts/Titania/Titania-Regular.woff'), 
		url('/fonts/Titania/Titania-Regular.otf'), 
		url('/fonts/Titania/Titania-Regular.ttf');
}

#share-banner {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 750px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	background-color: black;
	background-image: url('/img/share/share-banner.jpg');
	background-size: 200%;
	background-repeat: no-repeat;
	background-position: center;

	padding: 0 10%;
}

#share-banner:before {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;

	background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

#share-banner h1 {
	font-family: 'Titania', sans-serif;
	color: white;
	font-size: 20vw;
	text-transform: uppercase;
	z-index: 1;
	padding: 0;
	text-shadow: 6px 6px 0 #333333;
}

#share-banner h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
	font-weight: 400;
	color: white;
	z-index: 1;
	padding: 0;
	text-align: center;
}

@media (min-width: 768px) {
	#share-banner {
		height: 60vh;
		background-size: contain;
	}

	#share-banner h1 {
		font-size: 10rem;
	}
}

#share-description {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	margin-top: -10vh;
	padding: 9% 10% 15% 10%;

	background-color: black;
}

#share-description p {
	max-width: 1000px;
	font-family: 'Roboto Slab', sans-serif;
	font-weight: 300;
	font-size: 1.5rem;
	color: white;
	text-align: left;
	z-index: 1;
}

@media (min-width: 768px) {
	#share-description {
		margin-top: 0;
		padding: 9% 15% 7% 15%;
	}

	#share-description p {
		text-align: center;
		font-size: 2rem;
	}
}

#share-events {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;

	padding: 7% 10%;
	background-color: white;
	column-gap: 5%;
}

#share-events .event-row {
	display: flex;
	flex-direction: column;
	flex: 1;

	padding: 2rem 0;
}

#share-events .event-row h2 {
	font-family: 'Titania', sans-serif;
	font-size: 2.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 2px 2px 0 #CCCCCC;
	color: #222222;
	padding: 0;
}

#share-events .event-row h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	color: #222222;
	padding: 0;
}

#share-events .event-row p {
	padding: 2% 0;
	font-size: 1.2rem;
	font-weight: 300;
	flex: 1;
}

#share-events .event-row a.button {
	width: 100%;

	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-align: center;
	padding: 15px 25px;
	background-color: #222222;
	color: white;
	border-radius: 7px;
	box-shadow: 2px 2px 0 #CCCCCC;

	transition: .25s ease-in-out;
}

#share-events .event-row a.button:hover {
	transform: scale(1.05);
}

@media (min-width: 768px) {
	#share-events {
		flex-direction: row;
		padding: 7% 15%;	
	}

	#share-events .event-row {
		padding: 0;
	}

	#share-events .event-row a.button {
		padding: 12px 25px;
		width: fit-content;
	}
}

/* TEAM SECTION */
#team {
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 5% 0;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

#team h1, #supporters h1 {
	font-family: 'Titania', sans-serif;
	text-align: center;
	font-size: 13vw;
	color: #222222;
	text-shadow: 2px 2px 0 #CCCCCC;
	padding: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	#team h1, #supporters h1 {
		font-size: 5rem;
	}
}

.our-team {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	transition: 1s;
	padding: 0 5%;
}

@media (min-width: 1024px) {
	.our-team {
		flex-direction: row;
		align-items: stretch;
		padding: 0;
	}
}

.team-headshots {
	display: flex;
	flex: 1;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.team-column {
	flex-basis: 33%;
	height: 33vw;
	padding: 2%;
}

.reorder .team-column {
	flex-basis: 33%;
	height: 33vw;
}

@media (min-width: 1024px) {
	.team-column {
		flex-basis: 25%;
		height: 18vw;
	}

	.reorder .team-column {
		height: 12vw;
	}

	.team-headshots.reorder {
		max-width: 50%;
	}
}

.team-column.inactive {
	opacity: 0.6;
}

.team-column.inactive:hover {
	opacity: 0.75;
}

.team-headshot {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
}

.team-headshot:hover {
	cursor: pointer;
	transform: scale(1.1);
	transition: transform .25s ease-in-out;
}

.team-details {
	display: flex;
	width: 0;
	opacity: 0;
	transition: 1s ease-in-out;
	margin-top: 25px;
	
	color: white;
	background: linear-gradient(135deg, black, #333333);
	border-radius: 25px;
}

.team-details.expanded {
	width: 100%;
	opacity: 1;
	transition: opacity 2s ease-in-out;

	height: 60vh;
	overflow-y: scroll;

	padding: 10%;
}

@media (min-width: 1024px) {
	.team-details {
		margin-top: 0;
	}

	.team-details.expanded {
		height: 40vw;
		width: 45%;

		padding: 5%;
	}
}

.team-details div {
	display: none;
}

.team-details.expanded div {
	display: none;
	flex-direction: column;
	justify-content: flex-start;
	height: fit-content;
}

.team-details h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 2.5rem;
	color: white;
	margin-bottom: 0;
}

.team-details h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	padding: 3% 0;
}

.team-details p {
	font-family: 'Roboto Slab', serif;
	font-weight: 300;
	font-size: 1.3rem;
	color: #cccccc;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.team-details p {
		font-size: 1.15rem;
	}
}

#supporters {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;

	padding: 5% 10%;
}

#supporters h1 {
	font-size: 12vw;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	#supporters {
		padding: 5% 15%;
	}

	#supporters h1 {
		font-size: 5rem;
	}
}

#supporters p {
	font-size: 1.2rem;
	font-weight: 300;
}

#supporters .supporters-logos {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;

	padding: 12% 0;
}

#supporters .supporters-logos img {
	width: 50%;
	padding: 0;
}

@media (min-width: 768px) {
	#supporters .supporters-logos img {
		width: 350px;
		padding: 25px;
	}
}

#supporters .supporters-names ul {
	list-style-type: none;
	margin-top: 3rem;
	columns: 200px 2;
	column-gap: 30px;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25rem;
	text-align: center;
}

@media (min-width: 768px) {
	#supporters .supporters-logos {
		padding: 0;
	}

	#supporters .supporters-names ul {
		columns: 200px 2;
		font-size: 1.1rem;
		text-align: left;
	}
}

@media (min-width: 1000px) {
	#supporters .supporters-names ul {
		columns: 300px 3;
	}
}
