﻿.wpf-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%; /* full width across screen */
	height:140px;
	background: #f8f8f8;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* optional subtle shadow */
}

.wpf-header-inner {
	max-width: 1760px;
	margin: 0 auto;
	padding: 0px 20px;
	position:relative;
}

.wpf-header-logo {
	height: 70px;
	margin:10px 0px 20px 0px;
	align-items: center;
}

	.wpf-header-logo img {
		height: 100%;
	}

.wpf-header-menu {
	width: 100%;
	top:0px;
	height:20px;
}

.wpf-header-search { 
	position: absolute;
	top:10px;
	right:10px;
}

/* Spacer to push content below fixed header */
.wpf-header-height {
	height: 147px; /* adjust to match total header height (logo + menu + margin) */
	width: 100%;
}

.wpf-footer {
	text-align: center;
	padding: 20px 0px;
	border-top: solid 1px #ddd;
	margin: 0 auto;
	margin-top: 20px;
	max-width:1200px;
}

.wpf-footer-column { 
	display:inline-block;
	vertical-align:top;
	width:calc(25% - 30px);
	min-width:250px;
	margin-right:20px;
	text-align:left;
}

	.wpf-footer-column h3 {
		font-weight: 500;
		font-size: 1.3em;
		color: #104C8C;
		margin-bottom: 10px;
	}

.wpf-footer-inner {
	max-width: 1760px; /* match your page width */
	margin: 0 auto; /* center horizontally */
	padding: 0 20px; /* some breathing room on small screens */
}

	.wpf-footer-inner .wpf-menu-list {
		justify-content: center;
	}

	.wpf-footer-logo { 
		margin-bottom:20px;
		height:50px;
	}

	.wpf-footer-logo img { 
		height:100%;
	}

	.wpf-footer-copyright { 
		margin:10px 0px;
	}

.wpf-footer-social-link { 
	display:inline-block;
	vertical-align:middle;
	margin:10px;
	transition:0.25s;
	opacity:0.9;
}

	.wpf-footer-social-link:hover {
		opacity:1;
		cursor: pointer;
	}


