@import url('/_resources/fonts/ITCAvantGardeStd-Bk.ttf');
@import url('/_resources/css/_footer.css');
@import url('/_resources/css/_header-nav.css');

img {
	max-width: 100%;
	height: auto;
}
.secondarypage-content {
	padding:100px 0 50px 0;
}

/* BOXES */
.grid-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 400px 250px;
	gap: 25px;
}
.box { 
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	text-decoration: none;
	display: block;
	position: relative;
	font-family: 'ITCAvantGardeDemi', sans-serif;
	line-height: 3em;
	border-radius: 10px;
}
.box:hover {
	cursor: pointer;
	transition: transform 0.3s ease;
}
.box:link,
.box:visited {
	color: white;
}

/* Background images (replace with your own) */
.box1 {background-image: url('/_media/maps/allMap.jpg');}
.box2 {background-image: url('/_media/backgrounds/planningProcess_noGradient.jpg');}
.box3 {background-image: url('/_media/backgrounds/planningFramework_noGradient.jpg');}
.box4 {background-image: url('/_media/backgrounds/campusPlansBG.jpg');grid-column: span 3;}

/* Overlay effect */
.box::before {
	content: "";
	position: absolute;
	inset: 0;				
	transition: background 0.3s ease;
}
.box1::before {background: rgba(244, 117, 33, 0.75);}
.box2::before {background: rgba(0, 184, 231, 0.75);}
.box3::before {background: rgba(114, 191, 68, 0.75);}
.box4::before {background: rgba(0, 34, 102, 0.75);}

/* Hover colors */
.box1:hover::before {background: rgba(244, 117, 33, 1);}
.box2:hover::before {background: rgba(0, 184, 231, 1);}
.box3:hover::before {background: rgba(114, 191, 68, 1);}

/* Text above overlay */
.box span {
	position: absolute;
	top: 25px;
	left: 25px;
	z-index: 2;
	color: white;
	font-size: 2.4em;
	font-weight: bold;
	text-transform: uppercase;
}
.box-links {
	position: absolute;
	display: flex;
	flex-direction: row;
	gap: 10px;
	inset: 0;
	margin: auto;
	width: fit-content;
	height: fit-content;
	z-index: 2;
}
.box-links a {
	padding: 0 12px;
}
@media screen and (max-width: 768px) {
	.grid-container {
		grid-template-rows: 200px 200px;
	}
	.box {
		line-height: 1.2em;
	}
	.box span {
		top: 10px;
		left: 10px;
		font-size: 1em;
	}
}

.secondary-page {
	min-height: 400px;
}

.logo-white {
	max-width:200px;
	height:auto;
}
.presidents-message {
	float: left; 
	padding: 10px 20px 15px 0;
	max-width: 250px;
	height: auto;
}
.back {
	font-size: 1.6em;
	font-weight: bold;
	text-decoration: none;
}
.back img {
	max-width: 25px;
	height: auto;
	padding-bottom: 5px;
}
.modal-header {
	border-bottom: none;
}
.buttonGeneral {
	font-size: 16px;
	font-family: 'ITCAvantGardeDemi', sans-serif;
	font-weight: bold;
	background-color: #fff;
	border: 6px solid #006bb6;
	border-radius: 8px;
	color: #006bb6;
	cursor: pointer;				
	padding: 12px;
	white-space: nowrap;
	text-transform: uppercase;
	text-decoration: none;
}
.buttonGeneral:hover {
	background-color: #006bb6;
	color: #fff;
	text-decoration: underline;
}
.sectionTitle {
	font-size: 60px;
	font-family: 'ITCAvantGardeDemi', sans-serif;
	font-weight:bold;
	line-height: normal;
	text-transform: uppercase;
	color: #143057;
}
.sectionDescription {
	font-size: 25px;
	color: #143057;
}