@import'https://fonts.googleapis.com/css2?family=Oranienbaum&family=Overpass:ital,wght@0,100..900;1,100..900&family=Questrial&display=swap';

/* media at 790px */
/* Ctrl + F to find sections:
	- General styles
	- Home Page
	- About
	- Schedule
	- Resources
	- Join Us */


/* General styles */

/* Text */
.title {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 48px;
	color: white;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 2px;
	font-weight: 600
}
.slogan {
	font-family: Calibri, sans-serif;
	font-variant: all-small-caps;
	letter-spacing: 2px;
	font-size: 30px;
	color: white;
	text-align: center;
	font-weight: 200;
}
.subSlogan {
	font-family: Garamond, serif;
	font-variant: all-small-caps;
	font-size: 24px;
	color: white;
	text-align: center;
	letter-spacing: 2px;
	max-width: 550px;
	padding: 0px 20px 25px ;
}
.textTitle {
	display: flex;
	flex-direction: column;
	gap:36px;
	font-family: Trebuchet MS, sans-serif;
	font-size: 40px;
	text-align: center;
	max-width: 450px;
	font-weight: 600;
}
.textHeading {
	font-family: Trebuchet MS, sans-serif;
	font-size: 28px;
	color: black;
	font-weight: 600;
}
.textHeading:hover {
	font-family: Trebuchet MS, sans-serif;
	font-size: 28px;
	color: black;
	text-decoration: none;
}
.textCaption {
	font-family: Calibri;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	max-width: 500px;
}
.textSubtitle {
	font-family: Garamond, serif;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
}
.textBold {
	font-family: Calibri;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}
.normText {
	font-family: Calibri;
	font-size: 16px;
	/* text-align: justify; */
	color: black;	
	font-weight: 400;
	text-transform: none;
	line-height: 1.25;
}
.subText {
	font-family: Calibri, sans-serif;
    font-size: 24px;
    font-variant: all-small-caps;
    letter-spacing: 1px;
    line-height: 0.8;
    width: 100%;
}
.textBlue { 
	color: #ACB4C6 !important;
}
.textPink {
	color: #E2C0C0 !important;
}
.textYellow {
	color: #EDDFB8 !important;
}
.subtitle {
	font-family: Garamond, serif;
	font-size: 40px;
	letter-spacing: 4px;
	color: white !important;
	font-variant: all-small-caps;
	width: 100%;
	line-height: 2;
	text-align: center;
}
.logoName {
	display: flex;
	flex-direction: row !important;
	justify-content: center;
	align-items: center;
	width: fit-content;
	gap: 25px;
}
@media (max-width: 890px) {
	.logoName {
		flex-direction: column !important;
	}
	.subtitle{
		text-align: center;
		line-height: 1.5;
		padding-bottom: 20px;
		width: 100%;
		font-size: 28px;
		letter-spacing: 3px;
	}
	.title {
		font-size: 48px;
		text-align: center;
	}
	.slogan {
		font-size: 24px;
	}
}
@media (max-width: 700px) {
	.textTitle {
		font-size: 32px;
	}
	.normText {
		text-align: center;
	}
	.textHeading {
		text-align: center;
	}
	.textCaption {
		text-align: center;
	}
}
@media (max-width: 450px) {
	.title{
		font-size: 36px;
	}
	.subtitle{
		line-height: 1.2;
	}
	.textHeading{
		line-height: 1.2
	}
	.textSubtitle {
		font-size: 18px;
	}
}

/* Buttons */
.joinButton {
	font-family: Calibri, sans-serif;
	font-size: 18px;
	font-weight: 900;
	color: white;
	outline: 3px solid;
	padding: 15px 30px;
	border-radius: 50px;
	min-width: fit-content;
	letter-spacing: 1px;
}
.joinButton:hover {
	color: white;
	text-decoration: none;
	box-shadow: 0px 0px 5px 5px white;
}
a.contentButton {
	font-family: Calibri, sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: black;
	outline: 3px solid;
	padding: 15px 30px;
	border-radius: 50px;
	min-width: fit-content;
	text-decoration: none;
	letter-spacing: 1px;
}
a.contentButton:visited {
	text-decoration: none;
}
a.contentButton:hover {
	color: black;
	box-shadow: 0px 0px 5px 5px Black;
	text-decoration: none;
}
.yellowButton {
	background-color: #EDDFB8;
}
.pinkButton {
	background-color: #E2C0C0;
}
.blueButton {
	background-color: #ACB4C6;
}

/* Element Styling */
.pane {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 60px;
	padding: 175px 50px 125px 50px;
	height: fit-content;
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
		url(../images/backgrounds/AerialUofT.jpg);
	background-size: cover; 
	background-position: center;
}
.midPane {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
	url(../images/backgrounds/SandfordFlemming.jpg);
	background-position: center;
}
.shortPane {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
	url(../images/backgrounds/bayStreet.jpg);
	background-position: center;
}
.line {
	height: 3px;
	background-color: black;
	width: 100%;
	max-width: 500px;
	border-radius: 2px;
	opacity: 100%;
	align-self: center;
}
@media (max-width: 450px) {
	.pane {
		padding: 150px 25px 50px 25px;
		gap: 40px;
	}
}


/* Borders */
.borderBlue {
	outline: 5px solid #ACB4C6;
}
.borderPink {
	outline: 5px solid #E2C0C0;
}
.borderYellow {
	outline: 5px solid #EDDFB8;
}
.borderNavy {
	outline: 5px solid #3C4862;
}

/* NavBar */
.navbar {
	background-color: rgba(0, 0, 0, 0.85) !important;
	height: 70px;
	border-radius: 0;
}
.navbar-brand {
	margin-right: 5%;
}
.navbar-brand img{
	height: 100%;
	object-fit: contain;
}
.nav-link {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 16px;
	text-align: center;
	font-weight: 600;
}
.nav-link:hover {
	text-shadow: 0px 0px 10px white;
}
.navbar-nav {
	width: 100%;
	display: flex !important;
	justify-content: space-around !important;
	align-items: center !important;
	margin: 0 5%;
	background-color: transparent;
}
.navbar .show{
	background-color: rgba(0, 0, 0, 0.8);
	margin-top: 15px;
}

/* Footer */
.joinBar {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	background-color: #3C4862;
	justify-content: center;
	align-items: center;
	gap: 25px;
	padding: 20px;
}
.joinText {
	font-family: Calibri, sans-serif;
	font-size: 20px;
	min-width: 100px;
	text-align: center;
	line-height: 1.2;
	color: white;
}
.footer {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 25px;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 10px 50px;
}
.footer img {
	height: 60px;
	object-fit: contain;
}
.footerText {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 16px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	color: white;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 600;
}
.footerLinks {
	display: flex;
	flex-direction: row;
	letter-spacing: normal;
	font-family: Trebuchet MS, sans-serif;
	font-size: 16px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.footerLinks a {
	font-family: Trebuchet MS, sans-serif;
	color: white;
	padding: 0px 15px;
	text-align: center;
}
.footerLinks a:hover {
	text-decoration: none;
	color: white;
	text-shadow: 0px 0px 10px white;
}

@media (max-width: 1100px) {
	.subText {
		font-size: 20px;
        line-height: 0.5;
	}
	.subSlogan {
		line-height: 1.1;
	}
}

@media (max-width: 450px) {
	.footer{
		padding: 10px;
		gap: 10px;
	}
	.footerLinks { 
		/* flex-direction: column; */
		color: transparent;
		justify-content: space-between;
		width: 100%;
	}
	.footerLinks a {
		padding: 0px;
	}
}