/*
CTC Separate Stylesheet
Updated: 2023-04-07 10:07:21
*/

:root {
	--light-gray-color: #fff;
	--light-border-color: rgba(0, 0, 0, 0.25);
	--footer-text-color: #fff;
	--text-font: "Roboto", arial, helvetica, sans-serif;
	--title-font: "Roboto", arial, helvetica, sans-serif;
	--title-font-weight: 400;
	--navi-font: "Roboto", arial, helvetica, sans-serif;
	--widget-title-font: "Roboto", arial, helvetica, sans-serif;
	--text-line-height: 1.5;
	--title-line-height: 1.2;
}

/*--------------------------------------------------------------
# - Elements
--------------------------------------------------------------*/

/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

ul {
	color: #336;
}

hr {
	margin: 0;
}

a {
	color: #03c;
	text-decoration: underline;
	transition: all 400ms ease-out;
}

a:hover,
a:focus,
a:active {
	color: #AAAAAA;
	text-decoration: none;
}

/*--------------------------------------------------------------
# Galleries
--------------------------------------------------------------*/
.gallery {
	margin: 0;
}

/*--------------------------------------------------------------
# - Site Layout
--------------------------------------------------------------*/
.site {
	margin: 0;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.site-content {
	display: flex;
	flex: 1;
}

.site-main {
	flex: 1;
	max-width: 1280px;
}


/*--------------------------------------------------------------
# - Header
--------------------------------------------------------------*/
.site-header {
	background-image: linear-gradient(#336, #003);
}

/* Site Branding */
.site-title {
	font-family: "Roboto", arial, helvetica, sans-serif;
}

/*--------------------------------------------------------------
# - Footer
--------------------------------------------------------------*/
.footer-wrap {
	padding-top: 24px;
	background-image: linear-gradient(#003, #336);
}

.site-footer {
	text-align: center;
}

.site-footer a:link,
.site-footer a:visited {
	text-decoration: underline;
}

.site-footer a:hover,
.site-footer a:active {
	text-decoration: none;
}

footer p {
	color: var(--footer-text-color);
	font-size: .875rem;
	line-height: var(--text-line-height);
}

/*--------------------------------------------------------------
# - Flyer Grid
--------------------------------------------------------------*/
.flyer-grid {
	display: flex;
	flex-flow: column wrap;
	justify-content: space-around;
	align-items: center;
	}
	
.flyer-grid > div {
	display: flex;
	flex-flow: column wrap;
	width: 256px;
	padding: 4px;
	align-items: center;
	text-align: center;
	margin-bottom: 24px;
	}
	
@media (min-width: 768px) {
	.flyer-grid {
		flex-flow: row wrap;
		margin-bottom: 24px;
	}

	.flyer-grid > div {
		margin-bottom: 16px;
	}
}

.flyer-grid p {
	font-weight: 500;
	font-size: 0.875rem;
	margin: 0;
}

.flyer-grid p.flyer-title {
	margin-top: 8px;
	font-weight: 600;
}

.flyer-grid-heading {
	text-align: center;
	margin-top: 40px;
}

@media (min-width: 768px) {
	.flyer-grid-heading {
		text-align: left;
	}

}

/*--------------------------------------------------------------
# - Link Styling
--------------------------------------------------------------*/
.popular-links {
	display: flex;
	flex-flow: row wrap;
	padding: 0;
	margin: 8px 0 16px 0;
	font-size: 1rem;
}

.popular-links > div {
	flex: 50%;
	line-height: 1.4;
	padding-right: 0;
	padding-bottom: 16px;
}

@media (min-width: 768px) {
	.popular-links {
		margin: 8px 0 24px 0;
	}

	.popular-links > div {
		flex: none;
		padding-right: 24px;
		padding-bottom: 0;
	}


.pswp__bg {
    background-color: rgba(0, 0, 0, 0.75) !important;
}

/*--------------------------------------------------------------
# - Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    color: #FFF;
    background-color: #336;
	transition: all 400ms ease-in;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    background-color: #C5C8DA;
	transition: all 400ms ease-out;
}

/*--------------------------------------------------------------
# - Navigation
--------------------------------------------------------------*/
.main-navigation ul {
	font-family: "Roboto", arial, helvetica, sans-serif;
}

.main-navigation > ul {
	border-top: 0;
}

/* Menu Items Styling */
.main-navigation ul a {
	border-bottom: 0;
	border-color: var(--header-border-color);
	text-decoration: none !important;
}

.main-navigation ul a:hover,
.main-navigation ul a:active,
.main-navigation ul a:focus {
	color: #ffeb3b;
	text-decoration: underline !important;
}

.main-navigation ul li.current-menu-item > a {
	color: #ffeb3b;
	text-decoration: underline !important;
	border-bottom: 0 !important;
}

/*--------------------------------------------------------------
# - Sidebar
--------------------------------------------------------------*/
.sidebar .widget {
	background-color: #fff;
}


/*--------------------------------------------------------------
# - Single Posts and pages
--------------------------------------------------------------*/

/* Entry Header */
.entry-title, .archive-title {
	font-family: "Roboto", arial, helvetica, sans-serif;
	font-weight: 400;
}

/* Fullwidth Page Template */
body.page-template-template-fullwidth .site-content .site-main,
body.page-template-template-fullwidth-no-title .site-content .site-main {
	max-width: 1280px;
}

/*--------------------------------------------------------------
# - Archives and Blog Layouts
--------------------------------------------------------------*/

/* Search & Archive Header */
.archive-header .archive-title,
.search-header .search-title {
	font-family: "Roboto", arial, helvetica, sans-serif;
	font-family: var(--title-font);
	font-weight: 400;
}

/* Theme Pagination */
.pagination .page-numbers,
.pagination .current {
	background-color: #C5C8DA;
}

.pagination a:hover,
.pagination a:active {
	color: #2a4861;
	color: var(--link-hover-color);
	text-decoration: underline;
}

.pagination .current {
    background-color: #336;
	transition: all 400ms ease-in;
}

.pagination .current:hover {
    background-color: #C5C8DA;
	transition: all 400ms ease-out;
}

/*--------------------------------------------------------------
## - Media Queries for Layout
--------------------------------------------------------------*/
@media only screen and (min-width: 1280px) {
	.site-content {
		padding: 2.5rem 0 0 0;
	}
}

/*--------------------------------------------------------------
# - Theme Options
--------------------------------------------------------------*/

/* Wide Theme layout */
body.wide-theme-layout .site .header-main {
	max-width: 1280px;
}

body.wide-theme-layout .site .site-content,
body.wide-theme-layout .site .site-footer {
	max-width: 1280px;
}