/* ===================================================================
   LAYOUT
   =================================================================== */

body {
    margin: 0;
    padding: 0;
    background-color: #2a1a08;
    font-family: Arial, Verdana, sans-serif;
    font-size: 10pt;
    color: #2e1a08;
    min-width: 1280px;
}

#wrapper {
	margin: 0 auto;
	padding: 0;
	width: 1280px;
	background-color: #5c3a1e;
	border-left: 6px solid #3a2209;
	border-right: 6px solid #3a2209;
}

#header {
    height: 170px;
    border-top: 5px solid #8b5e2e;
    border-bottom: 3px solid #8b5e2e;
    display: flex;
    position: relative;
    overflow: hidden;
}

#logo {
    width: 230px;
    height: 170px;
    flex-shrink: 0;
    background: #a07040 url(../images/logo.png) no-repeat center center;
    background-size: cover;
    border-right: 3px solid #8b5e2e;
    box-sizing: border-box;
}

#banner {
	flex: 1;
	background: #c4a472 url(../images/banner.jpg) no-repeat center center;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}

#bannerOverlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(42,16,4,0.7) 0%, rgba(42,16,4,0.3) 50%, rgba(42,16,4,0.05) 100%);
}

#bannerText {
	position: relative;
	z-index: 2;
	padding: 0 0 0 28px;
}

#siteTitle {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 32px;
	color: #f5e6d0;
	text-transform: uppercase;
	letter-spacing: .07em;
	line-height: 1.2;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
	margin: 0;
	padding: 0;
}

#siteTitleSmall {
	font-size: 26px;
}

#siteSubTitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #f0d8b0;
	margin-top: 6px;
	letter-spacing: .05em;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

#body {
	display: flex;
	min-height: calc(100vh - 210px);
}

#leftCol {
    width: 230px;
    flex-shrink: 0;
    background-color: #c4a472;
    border-right: 3px solid #8b5e2e;
    padding: 20px 0 40px 0;
    box-sizing: border-box;
}

#nav {
	margin: 0;
	padding: 0;
}

#nav li {
	margin: 0;
	padding: 0 0 4px 0;
	list-style: none;
}

#nav a {
	display: block;
	padding: 5px 0 5px 18px;
	margin: 0 10px 0 10px;
	background-color: #6b0f24;
	border: 2px solid #3d0814;
	color: #f5e6d0;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: .05em;
	text-decoration: none;
}

#nav a:hover {
	background-color: #4a0818;
	color: #fdf6e3;
}

#sidebar, .sidebar-block {
	padding: 18px 16px;
	font-size: 11px;
	color: #3a2209;
	line-height: 1.8;
}

#rightCol {
	flex: 1;
	background-color: #fdf6e3;
	border: 1px solid #c4a472;
	padding: 28px 32px;
	box-sizing: border-box;
}

#rightSidebar {
	width: 260px;
	flex-shrink: 0;
	background-color: #f0e6cc;
	border-left: 2px solid #c4a472;
	padding: 24px 16px;
	box-sizing: border-box;
}

#credits {
    padding: 8px 12px;
    background-color: #3a2209;
    border-top: 3px solid #8b5e2e;
    color: #c8a97a;
    font-size: 9px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

#credits a {
	color: #c8a97a;
}

#footer-placeholder {
    min-width: 1280px;
}
