/* DOCUMENT INFORMATION
		- Document: style.css
		- Version: 0.5a
		- Client: Ohio State University Advancement
		- Author: Tyler Pennington
*/

/* GLOBAL SETTINGS ------------------------------------------------------------------------------------------------------------------------ */
#page-content {
	background-color: #ffffff; 						/* Controls the background color for the entire page. Excludes: masthead and top navbar */
	margin: 0px; 									/* Controls margins for entire page. Excludes: masthead and top navbar. */
	font-family: 'proximanova', Arial, sans-serif; 	/* Controls font configuration for the entire page. Excludes: masthead and top navbar */
	font-size: 14px; 								/* Controls size of font across entire page. Excludes: masthead and top navbar */
}

a:link {
	text-decoration: none;							/* Removes underlining from links */
	color: #ffffff;									/* Changes link text to white */
}

a:visited {
	text-decoration: none;							/* Removes underlining from visited links */
	color: #ffffff;									/* Changes color of visited links */
}

a:hover {
	text-decoration: underline;						/* Shows underline while hovering over link text */
}

/* HELPFUL LINKS NAVBAR ------------------------------------------------------------------------------------------ */
#helpful-links{
	padding-top: 10px; 								/* Controls spacing between Helpful Links navbar and Masthead */
}

#helpful-links ul{
	list-style-type: none;							/* Removes bullet points from the links */
	color: #ffffff;									/* Controls text color */
	background:rgba(0,0,0,0.8);						/* Controls background color */
	text-align: center;								/* Controls text position */
	padding-top: 10px;								/* Controls spacing between text and top edge of background */
	padding-bottom: 10px;							/* Controls spacing between text and bottom edge of background */
}

#helpful-links li{
	display: inline-block;							/* Displays text horizontally instead of stacking */
	font-size: 110%;								/* Slightly increases font size of text */
	font-weight: 400;								/* Controls weight of link text */
}

#helpful-links h1{
	font-size: 125%;								/* Slightly increases font size of header text */
	font-weight: 200;								/* Makes font size of header text slightly thinner */
	margin-left: -22px;								/* Reduces spacing between left margin and */
	padding-right: 150px; 							/* Adds spacing between links and header text */
}

#helpful-links .button{
	padding-left: 10px;								/* Adds spacing to the left of the links */
	padding-right: 10px;							/* Adds spacing to the right of the links */
	
}

/* PRIMARY CONTENT --------------------------------------------------------------------------------- */
.column {
	float: left;									/* Forces columns to display to the left of dividers */
	width: 49.9%;									/* Controls the width of the columns */
	text-align: center;								/* Aligns text to the center of each column */
	font-size: 110%;								/* Slight increase to text size */
}

.column h1{
	font-size: 150%;								/* Increasses font size for category labels */
	font-weight: 200;								/* Makes font thinner */
}

.column ul{
	font-size: 125%;								/* Increases font size for buttons */
}

.column li{
	margin-bottom: 30px;							/* Adjusts spacing between buttons */
}

.column img{
	margin-bottom: 15px;							/* Adjusts spacing between image and header */
}

.column .button{
	border-radius: 5px;								/* Creates rounded rectangle */
	padding: 10px;									/* Creates spacing for buttons */
	padding-left: 15px;								/* Adds additional spacing */
	padding-right: 15px;							/* Adds additional spacing */
	background: #bb0000;							/* Button color */
}

/* DIVIDER START ------------------------------------------------------------------------------------- */
.divider {
	border-left:1px solid #000000;					/* Creates divider */				
	height:500px;									/* Changes height */
	float:left;										/* Floats divider to the left of each column */								

}
/* DIVIDER END --------------------------------------------------------------------------------------- */

.description{
	margin-bottom: 5px;								/* Adds spacing between description and buttons */
	font-size: 110%;								/* Slightly incrases font size */
	font-weight: 450;								/* Thinner font */
}

.row {
	margin-top: 50px;								/* Adds spacing between rows */
}

.row:after {
	content: "";									/* Forces footer to the bottom of the page */
	display: table;									/* Organizes columns and rows into a readable format */
	clear: both;									/* Does not allow floating elements */
	margin-bottom: 50px;							/* Adds space below each row */
}

.row ul{
	list-style-type: none; 							/* Removes bullet points from button text */

}

/* PHONE VIEW --------------------------------------------------------------------------------------- */
@media screen and (max-width: 500px) {
	.tablet {
		display: none;								/* Hides tablet elements */
	}
	.mobile {
		display: inline;							/* Displays mobile elements */
	}
	.desktop-only {
		display: none;								/* Hides desktop elements */
	}
	#mobile-masthead h1{
		font-family:'proximanova',Arial,sans-serif;	/* Sets font for mobile masthead */
		font-weight:400;							/* Makes mobile masthead header thinner */
		font-size:40px;
		padding-top: 10px;
		padding-left: 10px;
	}
	#helpful-links h1 {
		display: none;								/* Removes helpful links header */
	}
	.not-mobile {
		display: none;
	}
	.column {
		width: 100%;
		border-bottom-style: solid;
		border-bottom-color: black;
		border-bottom-width: thin;
		padding-bottom: 10px;
	}
	.column p {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	#r1-c1 {
		margin-top: -15px;

	}
	#r1-c2 {
		margin-top: 30px;
	}
	#r1-c3 {
		margin-top: 30px;
	}
	#r2-c1 {
		margin-top: -20px;
	}
	#r2-c2 {
		margin-top: 30px;
		margin-bottom: -50px;
		border-bottom: none;
	}
	.divider {
		display: none;
	}
}

/* TABLET VIEW ---------------------------------------------- */
@media screen and (min-width: 501px) and (max-width: 900px) {
	.mobile {
		display: none;
	}
	.not-mobile {
		display: none;
	}
	.desktop-only {
		display: none;
	}
	.tablet {
		display: inline;
	}
	#tablet-masthead h1{
		font-family:'proximanova',Arial,sans-serif;
		font-weight:400;
		font-size:40px;
		padding-top: 10px;
		padding-left: 10px;
	}
	.column{
		width: 49%;
	}
	.column p {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	#r2-c2 {
		padding-bottom: 10px;
	}
	#r1-c1 {
		padding-bottom: 10px;
	}
	#r1-c2 {
		padding-bottom: 10px;
	}
	#helpful-links h1{
		padding-right: 10px;
		margin-left: 0px;
	}
	#helpful-links .button{
		padding-left: 10px;
		padding-right: 10px;
	}
}

/* DESKTOP VIEW ---------------- */
@media screen and (min-width: 901px){
	.tablet {
		display: none;
	}
	.mobile {
		display: none;
	}
	.not-mobile {
		display: inline;
	}
	.desktop-only {
		width:960px; 
		margin: 0 auto;
	}
	.column p {
		padding-left: 15px;
		padding-right: 15px;
	}
}