@charset "utf-8";
/* CSS Document */

:root {
    --content-width: 96vw;
    --text-width: 1200px;
    --header-height: 72px;
    --space: clamp(1rem, 2vw, 2rem);
    --border-color: #dddddd;
    --text-color: #222222;
    --background-color: #ffffff;
 	--color-bg: #ffffff;      
    --color-primary: #1d6fa5;
    --color-primary-dark: #100e3d;
    --color-accent: #2fa4a4;
    --color-border: #d9e2ec;

	--color-red: #9a1e42;
    /*tan linen background colors */
    --color-surface: #f4f6f8;
	--color-sand: #F9F2E6;
    --color-muted: #52606d;
    --color-ltTan: #F7F0E0;
	--color-text: #1f2933; 

    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-head: var(--font-body);

    --maxw: 1920px;
    --gap: 1.5rem;
    --radius: 8px;
	}

* { box-sizing: border-box;}

html {    scroll-behavior: smooth;}

body {
    margin: 0;
    color: var(--text-color);
    background: var(--background-color);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}
	
img {
    max-width: 100%;
    height: auto;
	border-radius: 4px;
	margin: 2%;
	}
 hr.dividerAccent {
		margin-right: 90%;
		margin-top: 0;
		border-bottom: 1px solid var(--color-red);
      }
h1 > span.accentText 
	{font-size: .6em; }

h2 	{
		color: var(--color-red);
	}
.hero-strong {
    font-weight: 700;
}

.hero-em {
    font-style: italic;
}
.hero-u {
    text-decoration: underline;
}
/* format right and left floats*/
	.align-left {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.align-right {
    float: right;
    margin: 0 0 1rem 1.5rem;
}
a {
    color: inherit;
}
/********* LAYOUT ********/
.site-shell {
    width: var(--content-width);
    margin-inline: auto;
}
/*
 * By default page content may use the full 96vw.
 * Add class="reading-width" to any wrapper when a narrower
 * text column is desired.
 */
.reading-width {
    width: min(100%, var(--text-width));
    margin-inline: auto;
}

.page + .page {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
}

.site-logo {
    display: block;
    max-height: 54px;
    width: auto;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
    text-decoration: underline;
}
/********* HEADER ********/
.site-header {
	background-color: var(--color-primary-dark);
    border-bottom: 1px solid var(--border-color);
	color: #fff;
}
.site-header a {color: #fff;}
.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}


.main-content {
    width: var(--content-width);
    margin-inline: auto;
    padding-block: clamp(0, 4vw, 4rem);
}

.hero { /*background styles */
	width: 100vw; 
	 margin-left: calc(50% - 50vw);
	padding: 2vw;
	background-color: var(--color-sand);
	background-image:
		linear-gradient(
			90deg,
			rgba(120, 100, 75, 0.025) 1px,
			transparent 1px
		),
		linear-gradient(
			rgba(120, 100, 75, 0.02) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.12) 1px,
			transparent 1px
		),
		linear-gradient(
			rgba(255, 255, 255, 0.10) 1px,
			transparent 1px
		);
	clear: both;
}
.hero > img {float:right;}

.asideL {
	background-color: rgba(0,0,0,.2);
	font-size: .9em;
	color: #000000;
	font-style: oblique;
	width: 20vw;
	max-width: 400px;
	float: left;
	border-radius: 2px;
	padding: 10px;
	margin-right: 10px;
}
.asideR {
	background-color: rgba(0,0,0,.2);
	font-size: .9em;
	color: #000000;
	font-style: oblique;
	width: 20vw;
	max-width: 400px;
	float: right;
	border-radius: 2px;
	padding: 10px;
	margin-left: 10px;
}.asideR::after {clear:both;}
/********* BUTTONS ********/
.btnContainer 
	{padding-bottom: 20px; padding-top: 20px;}
.hero .btnContainer {float: left;}
.buttonDark {
	background-color: var(--color-primary-dark);
	padding: 15px 20px; border-radius: 4px; color: #ffffff;
	margin: 35px;
	}

/********* GRIDS AND COLUMNS ********/

/***** TWO Columns *****/
.responsive-two-column-grid {
    width: 96vw; padding: 2%;
}
.responsive-two-column-grid > * {
    padding:1rem;
}
.oneHalf {max-width: 46%; padding: 2%; float:left;}
.oneFourth, .threeFourths {float:left;}
.oneFourth {width: 21vw; padding: 2%;}
.threeFourths{max-width: 71vw; padding: 2%;}
/***** Three Columns *****/
.responsive-three-column-grid {
    display:block;
}
.responsive-three-column-grid > * {
    padding:1rem;
}
.oneThird {max-width: 29%; float: left; padding: 2%}

.fltLeft {float:left; padding-right: 2%;}
	.fltRight {float:right; padding-left: 2%;}
	
/********* Classes & IDs =********/
.page-title {
    margin-top: 2rem;
    line-height: 1.15;
}
.caption {background-color: #eee;
		border: 1px solid #ccc; 
		font-size: .9em; 
		font-style: oblique;
		text-align: center;
		padding: 10px; 
	}
	.caption img::after {clear:both; }
/********* footer =********/
.site-footer {
	background-color: var(--color-primary-dark);
    border-bottom: 1px solid var(--border-color);
	color: #fff;
    border-top: 1px solid var(--border-color);
	padding: 2%;
}
.site-footer h2, .site-footer h3, .site-footer h4, .site-footer ul, .site-footer li,.site-footer a 
	{color: #fff;}
.footer-inner {
    padding-block: 1.5rem;
	 min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
	
@media (max-width: 760px) {
	.header-inner {
		align-items: flex-start;
		flex-direction: column;
		padding-block: 1rem;
		gap: .75rem;
		}

	.site-nav ul {
		flex-wrap: wrap;
		gap: .75rem 1rem;
		}
	.fltRight, .fltLeft 
		{float:none;}
	 hr.dividerAccent {
		margin-right: 60%;
	  	}
	.oneThird 
		{max-width: 96vw;}
	.responsive-three-column-grid 
		{
		display: grid;
		grid-auto-rows: 1fr;
		grid-template-columns: 1fr 1fr 1fr;
		}
}
