﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* === CSS CUSTOM PROPERTIES === */
:root {
  --navy:       #001546;
  --red:        #c1272d;
  --blue:       #003f87;
  --gold:       #D59726;
  --light-blue: #99CCFF;
  --bg:         #f8f9fb;
}





body 	{

	background-color: var(--bg);

	margin: 0px;

	padding: 0px;
	padding-top: 84px;

	border: none;

	font-family: "Open Sans", Arial, sans-serif;

	font-size: 18px;

	line-height: 1.9;

	color: var(--navy);

	}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: none;
    pointer-events: none;
}

/* ^^^ SEE CLASS "outer-background" BELOW */









/* PAGE FADE-IN CODE */



html, body {
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Open Sans", Arial, sans-serif;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body, html	{ height: 100%; }



#fadediv	{ background-color: #FFFFFF; position: absolute; top: 0; left: 0; z-index: 22000; height: 100%; width: 100%; }









/* DEFAULTS - MARGINS SPACING */



div		{ margin: 0; padding: 0; border: 0; }



table, tr, td	{ border-collapse: collapse; border-spacing: 0; margin: 0; padding: 0; border: 0; }









/* DEFAULTS - ALIGNMENT */



.td-right 	{ text-align: right; }



.td-left 	{ text-align: left; }



.td-center	{ text-align: center; }



.td-top		{ vertical-align: top; }



.td-middle	{ vertical-align: middle; }



.td-bottom	{ vertical-align: bottom; }



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



.center-div	{ margin-left: auto; margin-right: auto; }



.right-div	{ margin-left: auto; margin-right: 0; }



.left-div	{ margin-left: 0; margin-right: auto; }









/* DEFAULTS - MISC */



.fullwidth	{ width: 100%; }



.halfwidth	{ width: 50%; }



.nobreak	{ white-space: nowrap; }



.just 		{ text-align: justify; }



img 		{ border: 0; }



.rimage		{ max-width: 100%; height: auto; }



.blockimage	{ display: block; }



.formmargin	{ margin: 0px; }









/* NON-MENU LINK COLORS */



a:link, 

a:visited, 

a:active { color: var(--navy); text-decoration: none; }

a:hover { color: var(--blue); text-decoration: underline; }

p {
    color: var(--navy);
    font: 18px "Open Sans", arial, sans-serif;
    font-weight: 400;
    line-height: 1.75;
    margin: 0 0 1.4em 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.6em 0;
    color: var(--navy);
    font-family: "Open Sans", Arial, sans-serif;
}

.hero-topline {
    color: var(--navy);
    font: 700 18px "Open Sans", arial, sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-name {
    color: var(--navy);
    font: 900 74px "Marcellus", "Open Sans", arial, sans-serif;
    margin: 0 0 18px 0;
    line-height: 0.92;
    text-transform: uppercase;
}

.hero-subtitle {
    color: var(--navy);
    font: 600 28px "Open Sans", arial, sans-serif;
    margin: 0 0 12px 0;
}

.hero-district {
    color: var(--red);
    font: 700 22px "Open Sans", arial, sans-serif;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.tagline {
    color: var(--navy);
    font: 400 20px "Open Sans", arial, sans-serif;
    margin: 0;
    max-width: 100%;
    line-height: 1.7;
}

#headerdiv {
    display: grid;
    padding: 36px 24px 32px;
    position: relative;
    overflow: visible;
    background: transparent;
    min-height: auto;
    max-width: 1240px;
    margin: 0 auto;
}

#headerdiv::before {
    display: none;
    content: "";
}

#headerdiv > * {
    position: relative;
    z-index: 1;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 0.9fr);
    gap: 32px;
    align-items: center;
}

.hero-left {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    padding: 40px 34px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.hero-copy {
    max-width: 100%;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-donate-btn,
.hero-donate-btn:link,
.hero-donate-btn:visited {
    display: inline-block;
    background: var(--red);
    color: #ffffff;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid var(--red);
    letter-spacing: 0.03em;
    transition: background 0.2s, border-color 0.2s;
}

.hero-donate-btn:hover {
    background: #9e1f24;
    border-color: #9e1f24;
    color: #ffffff;
    text-decoration: none;
}

.hero-volunteer-btn,
.hero-volunteer-btn:link,
.hero-volunteer-btn:visited {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid var(--navy);
    letter-spacing: 0.03em;
    transition: background 0.2s, color 0.2s;
}

.hero-volunteer-btn:hover {
    background: var(--navy);
    color: #ffffff;
    text-decoration: none;
}

.hero-right {
    display: grid;
    gap: 24px;
}

.hero-top-banner,
.hero-portrait {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
}

.hero-top-banner img,
.hero-portrait img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 980px) {
    #headerdiv { padding: 28px 18px 28px; }
    .hero-section { grid-template-columns: 1fr; }
    .hero-left { padding: 32px 26px; }
    .hero-name { font-size: 62px; }
    .hero-subtitle { font-size: 24px; }
    .hero-district { font-size: 20px; }
    .tagline { font-size: 18px; }
}

.inline-flag {
    width: 1.2em;
    height: auto;
    vertical-align: -0.12em;
    margin: 0 0.3em;
}

/* === HERO SLIDE === */

.slide-flag {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    background: url("picts/flag.webp") center center / cover no-repeat;
    background-attachment: fixed;
    border-radius: 0;
    cursor: default;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 226px;
    min-height: 680px; height: auto;
    overflow: hidden;
}
/* Faded white overlay on flag */
.slide-flag::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.38);
    z-index: 0;
    pointer-events: none;
}
.slide-hero-title {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(20px, 3vw, 44px);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
    padding: 0 32px;
}

/* Frank portrait - right side of hero */
.slide-frank {
    display: block;
    flex-shrink: 0;
    height: clamp(360px, 40vw, 600px);
    width: auto;
    object-fit: contain;
    object-position: right bottom;
    margin-right: clamp(8px, calc(50vw - 580px), 160px);
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.6)) drop-shadow(0 4px 14px rgba(0,0,0,0.4));
    will-change: transform;
}


/* Hero text - no box, left side */
.slide-copy {
    width: 100%;
    max-width: 1000px;
    min-width: 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 16px 20px 16px;
    margin: 20px 10px 20px 10px;
    position: relative;
    z-index: 1;
    align-self: center;
    row-gap: 10px;
}

/* Frank Lesko */
.slide-copy h1 {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(42px, 5vw, 88px);
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
    line-height: 1.0;
    color: #ffffff;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.5);
}

/* for State Senate */
.slide-line-office {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(24px, 2.8vw, 58px);
    font-weight: 900;
    margin: 0;
    line-height: 1.05;
    color: #ffffff;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.9);
    display: block;
}

/* District text larger */
.slide-line-district {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(16px, 1.6vw, 28px);
    font-weight: 700;
    color: #fbbf24;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
    margin: -3px 0 0 0;
    letter-spacing: 0.02em;
    display: block;
}

/* Tagline bigger */
.tagline-flag { height: 2.2em; width: auto; vertical-align: middle; display: inline-block; margin-top: -0.6em; margin-bottom: -0.6em; }

.slide-tagline {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 1000;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
    margin: 0 0 26px 0;
    max-width: 700px;
}

.slide-record {
    position: absolute;
    top: 164px;
    left: 0;
    right: 0;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(14px, 2.5vw, 28px);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8), 0 0 18px rgba(0,0,0,0.5);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
    padding: 0 32px;
    margin: 0;
}

.slide-record-flag {
    height: 1.3em;
    width: auto;
    vertical-align: middle;
    margin: 0 0.25em;
    display: inline-block;
}

.slide-about {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 600;
    color: var(--navy);
    text-shadow: none;
    line-height: 1.65;
    margin: 0 0 10px 0;
    max-width: 560px;
    text-align: center;
}


.slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.slide-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 11px 28px;
    border-radius: 6px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

/* Donate: solid red fill */
.slide-actions .btn-donate {
    background: var(--red);
    color: #ffffff;
    border: 2px solid var(--red);
}

/* Volunteer: white with dark border, like the example */
.slide-actions .btn-volunteer {
    background: rgba(255,255,255,0.90);
    color: #0b1a3d;
    border: 2px solid #0b1a3d;
}

.slide-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.20);
}
.slide-actions .btn-donate:hover {
    background: #9e1f24;
    border-color: #9e1f24;
}
.slide-actions .btn-volunteer:hover {
    background: var(--navy);
    color: #ffffff;
    border-color: var(--navy);
}

/* Tablet — shrink Frank, tighten margins */
@media screen and (max-width: 1050px) {
    .slide-copy { margin: 40px 20px 40px 60px; }
}

/* Tablet — hide Frank portrait, center text */
@media screen and (max-width: 900px) {
    .slide-flag {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        height: auto;
        min-height: 0;
        background-attachment: scroll;
    }
    .slide-frank {
        order: 1;
        display: block;
        position: relative;
        width: 80%;
        height: auto;
        max-height: 60vw;
        min-height: 180px;
        object-fit: contain;
        object-position: center bottom;
        margin: 0 auto;
        flex-shrink: 0;
        transform: none;
        bottom: auto;
        left: auto;
        pointer-events: none;
    }
    .slide-copy {
        order: 2;
        position: relative;
        background: #ffffff;
        width: 100%;
        max-width: 100%;
        align-self: stretch;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        z-index: 2;
        margin: 0;
        padding: 24px 20px 32px;
        text-align: center;
        border-radius: 0;
    }
    .slide-about {
        max-width: 100%;
        font-size: clamp(14px, 2.5vw, 18px);
    }
}

/* Tablet */
@media screen and (max-width: 980px) {
    .slide-flag { padding-top: 194px; }
    .slide-copy { padding: 28px 20px; margin: 40px 16px 40px 40px; }
}

/* Tablet to mobile transition - 768px breakpoint */
@media screen and (max-width: 768px) {
    .slide-flag {
        padding-top: 120px;
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }
    .slide-frank { display: none; }
    .slide-copy {
        width: 100%;
        padding: 28px 20px;
		margin: 30px;
    }
    .slide-copy h1 { font-size: clamp(42px, 5vw, 80px); }
    .slide-line-office { font-size: clamp(28px, 3.5vw, 56px); }
    .slide-line-district { font-size: clamp(18px, 2.2vw, 32px); }
    .tagline-flag { height: 2.2em; width: auto; vertical-align: middle; display: inline-block; margin-top: -0.6em; margin-bottom: -0.6em; }

.slide-tagline { font-size: clamp(16px, 1.8vw, 24px); }
    .slide-actions { gap: 10px; }
    .slide-actions a { padding: 10px 24px; font-size: 14px; min-width: 100px; }
}

/* Mobile */
@media screen and (max-width: 600px) {
    .slide-flag {
        padding-top: 120px;
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }
    .slide-frank { display: none; }
    .slide-copy {
        width: 100%;
        padding: 28px 20px;
		margin: 30px;
    }
    .slide-copy h1 { font-size: clamp(42px, 5vw, 80px); }
    .slide-line-office { font-size: clamp(28px, 3.5vw, 56px); }
    .slide-line-district { font-size: clamp(18px, 2.2vw, 32px); }
    .tagline-flag { height: 2.2em; width: auto; vertical-align: middle; display: inline-block; margin-top: -0.6em; margin-bottom: -0.6em; }

.slide-tagline { font-size: clamp(16px, 1.8vw, 24px); }
    .slide-actions { gap: 10px; }
    .slide-actions a { padding: 10px 24px; font-size: 14px; min-width: 100px; }
}

/* Extra small phones */
@media screen and (max-width: 480px) {
    .slide-flag {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }
    .slide-frank { max-height: 72vw; }
    .slide-about { font-size: clamp(13px, 3.5vw, 16px); }
}



@media screen and (max-width: 640px) {
    body { font-size: 16px; }
    #headerdiv { padding: 22px 16px 22px; }
    .hero-left { padding: 24px 20px; }
    .hero-name { font-size: 48px; }
    .hero-subtitle { font-size: 20px; }
    .hero-district { font-size: 18px; }
    .tagline { font-size: 16px; }
}

.header-ico1, .header-ico2 {
    display: none !important;
}

@media screen and (max-width: 980px) {
    #headerdiv { padding: 24px 20px; min-height: auto; }
    .header-text { max-width: 100%; }
    .frank-pic { max-width: 100%; padding-left: 0; margin-top: 24px; }
    .hero-name { font-size: 60px; }
    .hero-subtitle { font-size: 22px; }
    .hero-district { font-size: 18px; }
    .tagline { font-size: 18px; }
}

@media screen and (max-width: 640px) {
    body { font-size: 16px; }
    #headerdiv { padding: 22px 16px; }
    .hero-name { font-size: 46px; }
    .hero-subtitle { font-size: 20px; }
    .hero-district { font-size: 16px; }
    .tagline { font-size: 16px; }
}









/* THE NEXT LINE CONTROLS THE FONT SIZE ON ALL PAGES */



body, div, table {

		color: var(--navy);

		font-family: "Open Sans", arial, sans-serif;

		font-size: 18px;

		font-weight: normal;

		line-height: 1.75;

		}

.titlefrank 	{ color: var(--navy); font: 44px "Open Sans", arial, sans-serif; font-weight: 700; letter-spacing: 0px; line-height: 1.2; }



.title 		{ color: var(--navy); font: 28px "Open Sans", arial, sans-serif; font-weight: 700; letter-spacing: 0px; line-height: 1.3; }



.subtitle 	{ color: var(--navy); font: 20px "Open Sans", arial, sans-serif; font-weight: 600; line-height: 2; }



.smalltitle 	{ color: var(--navy); font: 18px "Open Sans", arial, sans-serif; font-weight: 600; line-height: 2; }



.smalltext	{ color: var(--navy); font: 18px "Open Sans", arial, sans-serif; font-weight: 400; padding-bottom: 5px; line-height: 2; }



.testimonial	{ color: #CC0000; font-family: "Open Sans", Arial, sans-serif; font-size: 16px; font-weight: 700; }




.hilite		{ color: #FF0066; font-weight: 700; }









/* REMOVES MARGINS ON HEADING TAGS (FOR SEO) */



h1, h2, h3, h4	{ margin: 0px 0px 1px 0px; }









/* SERVICES LIST */



.list		{

		color: #000000;

		line-height: 150%;

		text-align: left;

		margin-top: 0px;

		margin-bottom: 0px;

		}



.floatlist	{ float: left; width: 50%; min-width: 200px; }



.list li	{ text-indent: 1px; }









/* PAGE & CONTENT HEIGHTS AND WIDTHS & PADDING */



/* NOTE: IF YOU CHANGE THE PAGE WIDTHS EDIT & TEST THE MEDIA QUERIES IN THE media-queries.css */



.pageheight	{ min-height: 700px; }



#pagewrapper	{

		width: 100%;

		min-width: 319px;

		text-align: center;

		margin: 0 auto;

		}



.pagebox	{

		padding: 0px 0px 0px 0px;

		margin: 0 auto;

		}






/* === SCROLL FADE-IN === */

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Platform cards: staggered children + hover */
.platform-cards .platform-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.2s ease;
}

.platform-cards.visible .platform-card             { opacity: 1; transform: translateY(0); }
.platform-cards.visible .platform-card:nth-child(2) { transition-delay: 0.10s; }
.platform-cards.visible .platform-card:nth-child(3) { transition-delay: 0.20s; }
.platform-cards.visible .platform-card:nth-child(4) { transition-delay: 0.30s; }
.platform-cards.visible .platform-card:nth-child(5) { transition-delay: 0.40s; }

.platform-cards.visible .platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,21,70,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transition-delay: 0s;
}
/* === ELECTION COUNTDOWN BAR === */

.election-bar {
    width: 100%;
    background: var(--navy);
    padding: 26px 32px;
    box-sizing: border-box;
}

.election-bar-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    max-width: 860px;
    margin: 0 auto;
}

.election-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 36px;
    gap: 2px;
}

.election-bar-item + .election-bar-item {
    border-left: 1px solid rgba(255,255,255,0.20);
}

.bar-label {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.bar-value {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.election-bar-countdown .bar-value {
    font-size: 26px;
    color: var(--gold);
    line-height: 1;
}

@media screen and (max-width: 600px) {
    .election-bar { padding: 12px 16px; }
    .election-bar-items { flex-direction: row; justify-content: center; gap: 0; }
    .election-bar-item:first-child { display: none; }
    .election-bar-item { padding: 6px 20px; }
    .election-bar-item + .election-bar-item { border-left: 1px solid rgba(255,255,255,0.20); border-top: none; }
    .election-bar-item:nth-child(2) { border-left: none; }
    .election-bar-countdown .bar-value { font-size: 22px; }
}

/* === HOME ABOUT ROW === */

.home-about-row {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px 40px 40px;
}

.home-about-photo {
    flex: 0 0 260px;
    margin-left: 16px;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
}

.home-frank-photo {
    width: 260px;
    height: 300px;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    margin: 0 auto;
    transform: scale(1.25);
    transform-origin: center 25%;
    box-shadow: 0 8px 28px rgba(0,21,70,0.22);
}

.home-about-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.home-about-name {
    font-size: 1.35em;
    font-weight: 700;
    color: var(--navy);
}

/* === HOME PLATFORM CARDS === */

.home-platform-section {
    padding: 0 40px 48px;
}

.home-platform-section .boxes2 {
    text-align: center;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 20px 0 24px;
}

.platform-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 16px;
    border-top: 3px solid var(--navy);
    box-shadow: 0 2px 10px rgba(0,21,70,0.08);
}

.platform-card-icon {
    width: 36px;
    height: 36px;
    color: var(--navy);
    margin-bottom: 12px;
}

.platform-card-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.platform-card-title {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.platform-card-text {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 17px;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* === HOME CTA STRIP === */

.home-cta-strip {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 80px 32px;
    text-align: center;
    /* border-top: 3px solid var(--gold); */
}

.cta-footer-gap {
    background: #ffffff;
    height: 0px;
    /* border-top: 3px solid var(--gold); */
}

.home-cta-title {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.home-cta-sub {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.80);
    margin: 0 0 32px;
}

.home-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.home-cta-actions .cta-btn-donate {
    background: var(--red);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--red);
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    display: inline-block;
}

.home-cta-actions .cta-btn-donate:hover {
    background: #9e1f24;
    border-color: #9e1f24;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    text-decoration: none;
    color: #ffffff;
}

.home-cta-actions .cta-btn-volunteer {
    background: transparent;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.85);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    display: inline-block;
}

.home-cta-actions .cta-btn-volunteer:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.20);
    text-decoration: none;
    color: #ffffff;
}

@media screen and (max-width: 980px) {
    .platform-cards { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 768px) {
    .home-about-row { flex-direction: column; gap: 24px; padding: 32px 24px 24px; }
    .home-about-photo { flex: 0 0 auto; }
    .home-frank-photo { width: 240px; height: 290px; }
    .home-platform-section { padding: 0 24px 32px; }
    .home-cta-title { font-size: 1.5rem; }
    .home-cta-sub { font-size: 1rem; }
}

@media screen and (max-width: 480px) {
    .platform-cards { grid-template-columns: 1fr; }
    .home-cta-strip { padding: 44px 20px; }
}
/* === INNER PAGE BANNER === */

.page-banner {
    width: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 44px 32px 40px;
    text-align: center;
}

.page-banner-title {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}
.page-banner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.banner-tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'Open Sans', arial, sans-serif;
    letter-spacing: 0.3px;
}

@media screen and (max-width: 768px) {
    .page-banner { padding: 32px 16px 28px; }
    .page-banner-title { font-size: 1.6rem; }
.page-banner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.banner-tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'Open Sans', arial, sans-serif;
    letter-spacing: 0.3px;
}
}
#contentbox-outer 

		{

		max-width: 1150px;

		margin: 0 auto;

		}



#contentbox	{

		width: 100%;

		float: left;

		margin-right: -302px;

		}



#left-content 	{

		margin-right: 302px;

		}



#sidebar-content {

		width: 300px;

		background-color: transparent;

		margin: 50px auto 30px auto;

		float: right;

		}



.content-pad 	{ padding: 40px 30px 30px 30px; }



.sidebar-pad	{ padding: 0px 20px 10px 30px; }









/* HOME PAGE HEIGHT & WIDTHS */



.pageheight-home  { min-height: 400px; }



#contentbox-home  {

		  max-width: 1200px;

		  margin: 0 auto;

		  padding: 20px 0px 10px 0px;

		  }









/* INNER AND OUTER BACKGROUNDS */



.outer-background	{

			background-color: #FFFFFF;

			background-image: none;

			background-repeat: repeat;

			background-attachment: fixed;

			}



.inner-background	{

			background-color: transparent;

			border: #000000 0px solid;

			}









/* TEXT AND GRAPHIC HEADER CODE */



#headerdiv	{

		text-align: left; /*left;*/  /* ALIGNS THE GRAPHIC LOGO */

		padding: 0px 0px 2px 0px;

		margin: 0px 0px 0px 0px;

		border: #000000 0px solid;

		display: flex;

		justify-content: space-between;

		align-items: center;

		}



.headercolor	{ background-color: var(--navy); }



#headerdiv a	{ outline: 0; }



.logo-respond	{

		height: 70px;

		width: 600px;		/* EDIT BOTH WIDTHS!! */

		max-width: 600px;	/* EDIT BOTH WIDTHS!! */

		min-width: 280px;

		margin: 0px auto 0px 0px;

		display: block;

		}





/* START TEXT HEADER CODE */



.textlogo-align	{ text-align: left; vertical-align: middle; }  /* ALIGNS THE TEXT LOGO */



.textlogo	{

		font: normal 54px "Open Sans", arial, sans-serif;

		padding: 15px 10px 20px 14px;

		display: block;

		}

@media screen and (max-width: 640px) {
    .textlogo {
        font-size: 36px;
        padding: 12px 8px 14px 12px;
    }
}

.textlogo {
    white-space: nowrap;
}


a.textlogo:link, a.textlogo:visited, a.textlogo:active	{ color: #FFFFFF; text-decoration: none; }



a.textlogo:hover { color: #FFFFFF; text-decoration: none; }

.tagline {
    color: #FFFFFF;
    font: normal 18px "Open Sans", arial, sans-serif;
    margin: 0;
    padding: 0 10px 20px 14px;
}

.frank-pic {
    padding-right: 20px;
}

.frank-img {
    height: 120px;
    width: auto;
}









/* HEADER ICONS */



/* ICON CODE Tree GROUP 1 */



.header-ico-tree	{

		width: 54px;

		height: 54px;

		background-color: transparent;

		text-align: center;

		position: absolute;

		left: 10px;

		top: 16px;

	/* CORNER ROUNDING */

		-moz-border-radius: 3px 3px 3px 3px;

		-webkit-border-radius: 3px 3px 3px 3px;

		border-radius: 3px 3px 3px 3px;

		}



.ico-tree-img	{ width: 54px; height: 54px; display: block; margin: 0 auto; }



/* ICON CODE GROUP 1 */



.header-ico1	{

		width: 36px;

		height: 36px;

		background-color: transparent;

		text-align: center;

		position: absolute;

		right: 46px;

		top: 16px;

	/* CORNER ROUNDING */

		-moz-border-radius: 3px 3px 3px 3px;

		-webkit-border-radius: 3px 3px 3px 3px;

		border-radius: 3px 3px 3px 3px;

		}



.ico1-img	{ width: 36px; height: 36px; display: block; margin: 0 auto; }







/* ICON CODE GROUP 2 */



.header-ico2	{

		width: 36px;

		height: 36px;

		background-color: transparent;

		text-align: center;

		position: absolute;

		right: 10px;

		top: 16px;

	/* CORNER ROUNDING */

		-moz-border-radius: 3px 3px 3px 3px;

		-webkit-border-radius: 3px 3px 3px 3px;

		border-radius: 3px 3px 3px 3px;

		}



.ico2-img	{ width: 36px; height: 36px; display: block; margin: 0 auto; }







/* HOVER COLOR ALL HEADER ICONS */



.icohov:hover	{ background-color: #9D7116; }









/* IMAGE BORDERS, FLOATS AND IMAGE SPACING */



.img-borders	{ border: #000000 1px solid; }



.left-float	{ float: left; }



.right-float	{ float: right; }



.img-float	{ float: left; margin: 3px 11px 1px 0px; }



.float-item	{ float: left; margin-right: 11px; margin-bottom: 2px; }



.text-nowrap	{ overflow: hidden; min-width: 200px; }



.divclear 	{ height: 1px; clear: both; font-size: 1px; line-height: 1px; padding: 0px; margin: 0px; }









/* PAGE LINES & BORDERS */



.page-splits 	{ 

		font-size: 1px;

		line-height: 1px;

		height: 1px;

		margin-top: 20px;

		margin-bottom: 20px;

		padding: 0px;

		background-color: #A09D93;

/* FIVE COLOR GRADIENT */

		background-image: linear-gradient(to right, #FFFFFF, #A09D93, #A09D93, #A09D93, #FFFFFF);

		border-top: #A09D93 0px solid;

		}



.splits-xtramargin	{ margin-top: 30px; margin-bottom: 30px; }



.splits-adjust		{ margin-top: 0px; }





/* LARGE PAGE SPLITS (ON HELP PAGE) */



.large-splits 	{

		line-height: 1px;

		font-size: 1px;

		height: 25px;

		background-color: var(--navy);

		margin: 0 auto;

		padding: 0px;

		border-bottom: #CCCCCC 4px solid;

		}









/* HOME PAGE */



/* HOME INFO 2-COLUMN SECTIONS (replaces old 3-box layout) */

.home-infosections {
    display: flex;
    gap: 0;
    margin: 40px 20px 40px 20px;
    /* border-top: 3px solid var(--light-blue);
    border-bottom: 3px solid var(--light-blue); */
}

.home-infoblock {
    flex: 1 1 50%;
    padding: 30px 30px 36px 30px;
    text-align: left;
}

.home-infoblock + .home-infoblock {
    border-left: 2px solid #d0d8e8;
}

.home-infoblock-title {
    color: var(--navy);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    border-bottom: 3px solid var(--navy);
    padding-bottom: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.home-infoblock-text {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.home-platform-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    color: var(--navy);
    font-size: 16px;
    line-height: 1.65;
}

.home-platform-list li {
    padding: 8px 0 8px 22px;
    border-bottom: 1px solid #e0e6ef;
    position: relative;
}

.home-platform-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 12px;
    top: 11px;
}

@media screen and (max-width: 760px) {
    .home-infosections {
        flex-direction: column;
    }
    .home-infoblock + .home-infoblock {
        border-left: none;
        border-top: 2px solid #d0d8e8;
    }
    .home-infoblock {
        padding: 24px 16px 28px 16px;
    }
}



/* HOME 3 BOX COLUMNS */



.introbox-text	{

		color: #000000;

		font-size: 15px;

		line-height: 150%;

		padding: 0px 0px 10px 0px;

		text-align: left;

		}



.introtitle 	{

		color: #FFFFFF;

		font: 18px "Open Sans", arial, sans-serif;

		text-align: left;

		padding: 12px 6px 12px 8px;

		margin: 0px 0px 10px 0px;

		background-color: #928F86;

		border: solid #CCCCCC;

		border-width: 2px 0px 0px 0px;

		}



.introbox-outer	{ width: auto; margin: 40px auto 25px auto; }



.introbox	{

		float: left;

		width: 33.33%;  /* DIVIDED BY 3 */

		}



.introbox-inner	{

		background-color: transparent;

		padding: 0px 0px 10px 0px;

		margin: 10px 0px 50px 0px;

	/* CORNER ROUNDING */

		-moz-border-radius: 0px;

		-webkit-border-radius: 0px;

		-khtml-border-radius: 0px;

		border-radius: 0px;

		}



.introbox-left	  { display: block; margin-left: 20px; margin-right: 20px; }



.introbox-center  { display: block; margin-left: 20px; margin-right: 20px; }



.introbox-right	  { display: block; margin-left: 20px; margin-right: 20px; }



.boxes2 {
    text-align: left;
    padding: 8px 0;
    border: none;
    background: transparent;
    color: #555;
}

.boxes2 a {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: var(--navy);
    border: 2px solid var(--navy);
    margin: 0 6px 6px 0;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.boxes2 a:hover {
    background: var(--navy);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}



/* HOME IMAGES WITH ZOOM */



.imagesbox	{

		height: auto;

		overflow: hidden;

		cursor:pointer;

		margin: 0 auto;

		border: 0px solid #000000; 

	/* CORNER ROUNDING */

		-moz-border-radius: 2px;

		-webkit-border-radius: 2px;

		-khtml-border-radius: 2px;

		border-radius: 2px;

		}



.introimages img {

		width: 100%;

		height: auto;

		display: block;

	/* IMAGE ZOOM */

		position: relative;

		-webkit-transition: all 400ms ease-in;

		-webkit-transform: scale(1);

		-ms-transition: all 400ms ease-in;

		-ms-transform: scale(1);

		-moz-transition: all 400ms ease-in;

		-moz-transform: scale(1);

		transition: all 400ms ease-in;

		transform: scale(1);

		}



.introimages img:hover	{

	/* IMAGE ZOOM */

		-webkit-transition: all 400ms ease-in;

		-webkit-transform: scale(1.3);

		-ms-transition: all 400ms ease-in;

		-ms-transform: scale(1.3);   

		-moz-transition: all 400ms ease-in;

		-moz-transform: scale(1.3);

		transition: all 400ms ease-in;

		transform: scale(1.3);

		}









/* HOME PAGE LOWER 2 COLUMN TEXT CONTENT */



.homecontent-outer {

		background-color: transparent;

		max-width: 100%;

		margin: 0px 20px 50px 20px;

		/* border-top: 3px solid var(--light-blue); */

		/* border-bottom: 3px solid var(--light-blue); */

		}



.home-2xcontent	{

		float: left;

		width: 50%;  /* DIVIDED BY 2 MINUS PADDING BELOW */

		margin: 0px auto 0px auto;

		}



.content-left	{ padding: 25px 20px 40px 0px; }



.content-right	{ padding: 25px 0px 40px 20px; }









/* HOME PAGE LOWER 1 COLUMN TEXT CONTENT */



.home-1col	  { max-width: 100%; margin: 0 auto; }



.content-pad-home { padding: 30px 20px 30px 20px; }



.homelinks	  { color: #CC9966; }









/* HOME JQUERY SLIDESHOW (HOME & SETS) (SEE ALSO responsive-slides.css IN FOLDER JQuery) */



.homeimageborder {
    background-color: transparent;
    background-image: none;
    border: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: none;
}



.rslides_container {
    background-color: transparent;
    width: 100%;
    max-width: none;
    min-width: 250px;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0;
    border-width: 0px 0px 0px 0px;
}



#homeJQ > .centered-btns_nav	{ display: none; }  /* HIDES HOME ARROWS */





/* HOME SLIDESHOW ROUND ACTIVE BUTTON STYLES */



.centered-btns_tabs	{

			width: 100%;

			position: absolute;

			bottom: 15px;

			left: 0px;

			margin: 0 auto;

			text-align: center;

			z-index: 1000;

			background-color: transparent;

			}





/* NORMAL BUTTON STATE */



.centered-btns_tabs a 	{

			width: 25px;

			height: 15px;

			background-color: transparent;

			border: #FFFFFF 2px solid;

		/* CORNER ROUNDING */

			-webkit-border-radius: 4px;

			-moz-border-radius: 4px;

			border-radius: 4px;

			margin: 0px 4px 0px 4px;

			}





/* HOVER BUTTON STATE */



.centered-btns_tabs a:hover 

			{ background-color: #FFFFFF; border: #FFFFFF 2px solid; }



/* ACTIVE BUTTON STATE */



.centered-btns_here a, .centered-btns_here a:hover  

			{ background-color: var(--gold); border: var(--gold) 2px solid; cursor: default; }





/* FADE UP JQUERY BUTTONS */



.centered-btns_tabs	{

	animation: fadein 3s;

	-moz-animation: fadein 3s;

	-webkit-animation: fadein 3s;

	-o-animation: fadein 3s;

	}

@keyframes fadein {

    from { opacity:0; } to { opacity:1; }}



@-moz-keyframes fadein { /* Firefox */

    from { opacity:0; } to { opacity:1; }}



@-webkit-keyframes fadein { /* Safari & Chrome */

    from { opacity:0; } to { opacity:1; }}



@-o-keyframes fadein { /* Opera */

    from { opacity:0; } to { opacity:1; }}









/* FOR OPTIONAL-No-Animation-Home.htm PAGE IMAGE */



.homeimage		{ width: 100%; display: block; }



.homeimage-static	{

			max-width: 1200px;  /* WIDTH INCLUDES BORDER */

			min-width: 250px;

			margin: 0 auto;

			-moz-box-sizing: border-box;

			-webkit-box-sizing: border-box;

			box-sizing: border-box;

		  	border: solid #999999;

		  	border-width: 0px 0px 0px 0px;

		  	/* NOTE: BORDERs ABOVE ARE | top | right | bottom | left */

			}









/* RIGHT SIDEBAR */



.SB-background		{

			padding: 0px;

			border-left: #C5CBD4 1px solid;

			}



.sidebar-area		{ background-color: transparent; margin: 0 auto; }



.sidebar-textarea	{

			text-align: left;

			width: 100%;

			margin: 0px auto 10px auto;

			padding: 0px 0px 10px 0px;

		  	border: solid #CECECE;

		  	border-width: 0px 0px 0px 0px;

		  	/* NOTE: BORDERs ABOVE ARE | top | right | bottom | left */

			}



.sidebar-text 	{

		color: #000000;

		font: 15px "Open Sans", arial, sans-serif;

		text-align: left;

		font-weight: normal;

		line-height: normal;

		}



.sidebar-title	{

		color: #FFFFFF;

		font: 20px "Open Sans", arial, sans-serif;

		background-color: var(--red);

		padding: 9px 5px 10px 6px;

		margin: 0px auto 7px auto;

  	/* CORNER ROUNDING */

		-moz-border-radius: 3px;

		-webkit-border-radius: 3px;

		-khtml-border-radius: 3px;

		border-radius: 3px;

		}



.sidebar-image	{

		width: 100%;

		height: auto;

		display: block;

		margin: 0px auto 15px auto;

		padding: 0px 0px 0px 0px;

		border: var(--navy) solid;

		border-width: 4px 0px 4px 0px;

		/* NOTE: BORDERs ABOVE ARE | top | right | bottom | left */

		-moz-box-sizing: border-box;

		-webkit-box-sizing: border-box;

		box-sizing: border-box;

  	/* CORNER ROUNDING */

		-moz-border-radius: 0px;

		-webkit-border-radius: 0px;

		-khtml-border-radius: 0px;

		border-radius: 0px;

		}



.side-links	{

		padding: 10px 0px 10px 0px;

		margin: 0px;

		}



.side-links a	{

		font: 16px "Open Sans", arial, sans-serif;

		font-weight: normal;

		line-height: normal;

		display: block;

		padding: 6px 0px 6px 12px;

		background-image: url("picts/sidebar-bullet-gray.gif");

		background-repeat: no-repeat;

		background-position: left 0px top 1px;

		border: dashed #A09D93;

		border-width: 0px 0px 1px 0px;

		/* NOTE: BORDERs ABOVE ARE | top | right | bottom | left */

		}



.side-links a:first-child { border-width: 1px 0px 1px 0px; }









/* FOOTER */



.footer-splits {
		height: 3px;
		/* background: var(--gold); */
		border: none;
		margin: 0;
		padding: 0;
		}



.footer-background {
		background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
		min-height: 1%;
		}

		

.footerbox	{

		padding: 0px 0px 0px 0px;

		margin: 0px;

		border: solid #000000;

		border-width: 0px 0px 0px 0px;

		/* NOTE: BORDERs ABOVE ARE | top | right | bottom | left */

		}



.footer-pad	{

		padding: 35px 10px 35px 10px;

		}



.footerbox, .footerbox div, .footerbox table { color: #FFFFFF; }



div.footer-title {

		color: #FFFFFF;

		font: 20px "Open Sans", arial, sans-serif;

		font-weight: 400;

		padding-bottom: 7px;

		margin-bottom: 5px;

		border-bottom: var(--red) 2px solid;

		}



.footer-links > div {
			text-align: left;
			padding: 5px 30px;
			}



.footer-links {
		display: flex;
		font-size: 16px;
		width: 86%;
		max-width: 900px;
		line-height: 35px;
		}



.footerlinks-1 { flex: 1; border-right: #526081 1px solid; }



.footerlinks-2 { flex: 1; border-right: #526081 1px solid; }



.footerlinks-3 { flex: 1; }



.footer-copyright  {

		   padding: 14px 10px 30px 10px;

		   margin: 0px 0px 0px 0px;

		   background: rgba(255,255,255,0.08);  /* SEMI-TRANSPARENT BACKGROUND */

		   min-height: 1%;  /* FIX FOR IE BUG DO NOT EDIT */

		   border: none;

		   /* NOTE: BORDERs ABOVE ARE | top | right | bottom | left */

		   }



.copyright-text	   {

		   color: #FFFFFF;

		   font: 12px "Open Sans", arial, sans-serif;

		   font-weight: normal;

		   line-height: normal;

		   }



.footer-disclaimer {

		   font-size: 11px;

		   padding: 6px 0px 6px 0px;

		   margin: 16px auto 15px auto;

		   max-width: 1000px;

		   border: solid #4B7AA9;

		   border-width: 1px 0px 1px 0px;

		   /* NOTE: BORDERs ABOVE ARE | top | right | bottom | left */

		   }





/* FOOTER LINK COLORS */



.footerbox a:link, 

.footerbox a:visited, 

.footerbox a:active 	{ color: #BFC4D1; text-decoration: none; white-space: nowrap; }



.footerbox a:hover 	{ color: #9DE3FD; text-decoration: underline; white-space: nowrap; }





/* COPYRIGHT LINK COLORS */



div.footer-copyright a:link, 

div.footer-copyright a:visited, 

div.footer-copyright a:active 	{ color: #9DE3FD; text-decoration: none; }



div.footer-copyright a:hover 	{ color: #FFFFFF; text-decoration: underline; }









/* SOCIAL ICONS */



.socialbox	{

		list-style: none;

		padding: 0px;

		margin: 0px;

		}



.socialbox li	{

		display: inline-block;

    		/* *display:inline;  For Older IE */

    		/* *zoom:1; */

		}



.socialicon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 7px;
		margin: 6px 3px 15px 3px;
		background-color: transparent;
		border: var(--navy) 1px solid;
		border-radius: 3px;
		color: #ffffff;
		text-decoration: none;
		}



.socialicon:hover  { background-color: rgba(0,21,70,0.6); border: var(--gold) 1px solid; color: #ffffff; text-decoration: none; }

.socialicon svg { width: 26px; height: 26px; fill: currentColor; display: block; }









/* JQUERY SLIDESHOW SETS (SEE ALSO HOME JQUERY ABOVE & responsive-slides.css IN FOLDER JQuery) */



.slideshow-text	{

		max-width: 750px;

		text-align: center;

		margin: 12px auto 10px auto;

		}



#slidesJQ		{ border: var(--navy) 10px solid; cursor: auto; }



#contentbox-slideshows	{

			max-width: 932px;

			margin: 0 auto;

			padding: 30px 10px 15px 10px;

			}



.slide-setwidth		{ max-width: 904px; }  /* MAX SLIDE IMAGE WIDTH - INCLUDES BORDER */



#slidesJQ > .centered-btns_nav	{ display: block; }  /* ARROWS */



.HoverBorder	{

		border: #FFFFFF 2px solid;

		vertical-align: bottom;

		box-sizing: border-box;

		-moz-box-sizing: border-box;

		-webkit-box-sizing: border-box;

	/* ZOOM */

		-moz-transform: scale(1);

		-webkit-transform: scale(1);

		transform: scale(1);

	/* FADE UP */

		-webkit-transition: all 0.3s;

		transition: all 0.3s ease;

		}



a:hover .HoverBorder {

		border: #2D3D76 2px solid;

	/* ZOOM */

		-webkit-transform: scale(1.03);

		-moz-transform: scale(1.03);

		transform: scale(1.03);

		}







/* MEDIA - VIDEOS AND SLIDESHOW PAGES */



.media-text	{

		max-width: 750px;

		margin: 20px auto 12px auto;

		}



/* MEDIA PLAY OVERLAY */



.media-pbox	{

		float: left;

		margin-right: 12px;

		margin-bottom: 0px;

		position: relative;

		}



.media-picon	{

		position: absolute;

		top: 50%;

		left: 50%;

		margin-top: -26px;

		margin-left: -26px;

		}



.media-thumb	{ display: block; margin-bottom: 5px; }









/* CONTACT & QUOTES PAGE CODE */



.phonetitle		{ color: #000000; font: 18px "Marcellus", "Open Sans", arial, sans-serif; font-weight: 700; line-height: normal; }



.contact-pad 		{ padding: 15px 0px 15px 0px; }



.contact-select		{ color: #223C57; font-weight: normal; margin: 6px 0px 6px 0px; }



.form-box		{ margin: 20px 0px 10px 100px; }





/* CONTACT BUTTONS */



input[type=submit].submitbutton, input[type=reset].submitbutton 

		{

		color: #FFFFFF;

	       	font: 400 16px "Open Sans", arial, sans-serif;

		text-align: center;

		background-color: var(--navy);

		-webkit-appearance: none;

		padding: 12px 8px 12px 8px;

		margin: 0px 0px 0px 0px;

		cursor: pointer;

		width: 120px;

        	border: #000000 0px solid;

  	/* CORNER ROUNDING */

		-moz-border-radius: 3px;

		-webkit-border-radius: 3px;

		-khtml-border-radius: 3px;

		border-radius: 3px;

		}



input[type=submit].submitbutton:hover, input[type=reset].submitbutton:hover 

		{

		color: #FFFFFF;

		background-color: #928F86;

        	border: #000000 0px solid;

		}



.shadeform	{

		font: 16px arial, sans-serif;

		color: #000000;

		background-color: #FFFFFF;

		background-image: url("picts/shadeform.png");

		text-align: left;

		width: 100%;

		max-width: 300px;

		padding: 5px;

		margin: 3px 0px 6px 0px;

		-moz-box-sizing: border-box;

		-webkit-box-sizing: border-box;

		box-sizing: border-box;

		border: #999999 1px solid;

		}



.textarea	{

		font: 16px arial, sans-serif;

		color: #000000;

		background-color: #FFFFFF;

		background-image: url("picts/shadeform.png");

		text-align: left;

		width: 100%;

		max-width: 325px;

		height: 150px;

		overflow: auto;

		padding: 5px;

		margin: 3px 0px 6px 0px;

		border: #999999 1px solid;

		}



.dropdown 	{

		font: 16px arial, sans-serif;

		color: #000000;

		background-color: #FFFFFF;

		width: 100%;

		max-width: 300px;

		padding: 5px;

		margin: 3px 0px 6px 0px;

		}



/* QUOTES PAGE - MODIFIES ABOVE CLASSES */



.quotechoice 	{ color: #223C57; margin: 6px 0px 6px 0px; }



.quoteform	{ width: auto; }



.dropquotes	{ width: auto; }



input[type=submit].quotebutton	{ width: 200px; }









/* CONTACT PAGE GOOGLE DIRECTIONS */



.directions	{

		font-size: 14px;

		font-weight: normal;

		line-height: normal;

		padding: 8px 0px 5px 0px;

		}



.directions .shadeform	{

			width: 100%;

			max-width: 290px;

			margin: 5px 0px 6px 0px;

			-moz-box-sizing: border-box;

			-webkit-box-sizing: border-box;

			box-sizing: border-box;

			}



input[type=submit].directionbutton {

			width: 100%;

			max-width: 290px;

			-moz-box-sizing: border-box;

			-webkit-box-sizing: border-box;

			box-sizing: border-box;

			}









/* OPTIONAL No-Form-contact.htm PAGE */



.no-formmargin	{ margin: 25px 0px 25px 0px; }









/* CALENDAR PAGE */



blockquote.calbox 	{

		color: #000000;

		font-size: 13px;

		line-height: normal;

		background-color: #EDF2F1;

		margin-top: -30px;

		margin-bottom: 0px;

		margin-left: 50px;

		margin-right: 0px;

		padding: 8px 8px 8px 10px;

		border-top: 1px solid #AACAED;

		border-right: 1px solid #AACAED;

		border-bottom: 1px solid #AACAED;

		border-left: 6px solid #AACAED;

	/* CORNER ROUNDING */

		-moz-border-radius: 4px;

		-webkit-border-radius: 4px;

		-khtml-border-radius: 4px;

		border-radius: 4px;

		} 



.calendarnum 	{ color: #00658F; font-size: 24px; }



.bigtitle 	{

		color: #000000;

		font: 36px "Open Sans", Arial, sans-serif;

		letter-spacing: 0px;

		font-weight: normal;

		line-height: normal;

		padding: 0px 0px 0px 6px;

		}



.icon-space	{ margin-top: 10px; margin-bottom: 3px; }



.clickdate-text	{ font-size: 12px; text-align: center; padding: 4px 0px 2px 0px; }









/* SMALL CALENDAR */



.calendar	{ border: #C0C0C0 1px solid; background-color: #F0F0F0; width: 100%; }



.calendarinner	{ border-collapse: collapse; border-spacing: 0px; table-layout: fixed; width: 100%; }



.calendarinner td	{ width: 14.28%; }



.calspace	{ padding: 0px; }



.calendartitle	{

		color: #FFFFFF;

		background-color: var(--navy);

		font: normal 19px "Open Sans", arial, sans-serif;

		padding: 8px 4px 8px 10px;

		text-align: left;

		border-bottom: #3399FF 3px solid;

		}



.caldays	{

		height: 26px;

		background-color: #FFFFFF;

		color: #000000;

		font: normal 15px "Open Sans", arial, sans-serif;

		border-right: #E2E2E2 1px solid;

		border-bottom: #00C1CC 1px solid;

		text-align: center;

		}



.calday		{

		background-color: #F0F9F8;

		color: #000000;

		font: 700 15px "Open Sans", arial, sans-serif;

		border-right: #E2E2E2 1px solid;

		border-bottom: #66CC00 1px solid;

		text-align: center;

		}



.caldates	{

		height: 27px;

		background-color: #FFFFFF;

		color: #000000;

		font: normal 15px "Open Sans", arial, sans-serif;

		border-right: #E2E2E2 1px solid;

		border-bottom: #E2E2E2 1px solid;

		text-align: center;

		}



.calhilite	{

		background-color: #FFFFFF;

		color: #000000;

		font: 700 18px "Open Sans", arial, sans-serif;

		border-right: #E2E2E2 1px solid;

		border-bottom: #E2E2E2 1px solid;

		text-align: center;

		}









/* FAQ PAGE */



.faq-box	{

		display: none;

		margin: 0px 0px 0px 0px;

		padding: 10px 20px 10px 20px;

		border: #999999 0px solid;

		}









/* LINKS PAGE CODE */



table.searcharea td	{ padding: 0px 3px 0px 0px; }



.searcharea		{ margin: 18px 0px 18px 0px; }



.searchform 	{

		color: #000000;

		font: 14px arial, sans-serif;

		text-align: left;

		background-color: #FFFFFF;

		background-image: url("picts/shadeform.png");

		width: 150px;

		padding: 5px;

		border: #999999 1px solid;

		}



.searchbutton 	{

		color: #FFFFFF;

	       	font: bold 14px arial, sans-serif;

		text-align: center;

		background-color: #928F86;

		-webkit-appearance: none;

		padding: 6px 10px 6px 10px;

		margin-top: 0px;

		cursor: pointer;

		border: #000000 0px solid;

  	/* CORNER ROUNDING */

		-moz-border-radius: 3px;

		-webkit-border-radius: 3px;

		-khtml-border-radius: 3px;

		border-radius: 3px;

		}









/* PAYPAL payments.htm PAYMENT PAGE CODE */



.payform 			{ width: 160px; }



input[type=submit].payform 	{ width: 162px; margin-bottom: 10px; }



.payformbox	{

		background-color: #F0F0F0;

		border: #CCCCCC 1px solid;

		}



.paypaltable td	{ vertical-align: middle; padding: 6px 10px 6px 10px; }



.paypalbadge-space	{ padding: 30px 10px 8px 0px; }









/* PDF PAGE */



.pdf-icon	{ margin: 10px 10px 0px 10px; }









/* SITE MAP */



.searchtext		{ font-size: 12px;}



.searchmargin		{ margin: 0px 0px 0px 0px; }



.sitesearchform		{ width: 125px; margin: 0px 3px 0px 0px; }



.sitesearchbutton	{ width: 65px; }









/* STAFF PAGE */



.staff-email	{

		color: #604F3C;

		font-family: "Open Sans", arial, sans-serif;

		font-size: 12px;

		font-weight: 700;

		line-height: normal;

		margin: 15px 0px 0px 0px;

		padding: 12px 0px 0px 0px;

		border-top: #CC9900 1px solid;

		}









/* VIDEO PAGE (FOR RESPONSIVE VIDEO) */



.videobox	 {

		 max-width: 950px;

		 margin: 0 auto;

		 padding: 0px 5px 0px 5px;

		 }



.video-container {

		 min-width: 200px;

		 padding-top: 0px;

		 padding-bottom: 56.25%;

		 margin: 26px auto 12px auto;

		 height: 0;

		 overflow: hidden;

		 position: relative;

		 z-index: 100;

		 }

 

.video-container iframe,

.video-container object,

.video-container embed {

		 width: 100%;

		 height: 100%;

		 position: absolute;

		 top: 0;

		 left: 0;

		 z-index: 100;

		 }





/* VIDEO MENU */

.menu-brand,
.brand-link {
    white-space: nowrap;
}

.menu-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1;
}



#menu-videos	{

		background-color: #DAD8D4;

		font-size: 0px;

		line-height: 0px;

		text-align: center;

		padding: 12px 0px 9px 0px;

		margin: 0px 0px 0px 0px;

		border-bottom: #B2ABA0 1px solid;

		}



.vid-thumb 	{

		width: 100%;

		max-width: 100px;

		height: auto;

		vertical-align: bottom;

		margin: 2px 2px 2px 2px;

		border: #000000 2px solid;

		}



.vid-thumb:hover { border: #CC0000 2px solid; }









/* HIDE MENU AND ITEMS FOR PRINTING */



@media print {

.printhide 	{ display:none; }

.pageheight 	{ min-height: 50px; }

}

@media screen{

.printonly 	{ display:none; }

}


































/* === ABOUT PAGE === */

.about-banner-sub {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    margin: 6px 0 0;
    letter-spacing: 1px;
    font-weight: 400;
}

.about-intro {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0 64px;
}

.about-intro-photo {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 48px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(0,21,70,0.18);
}

.about-intro-photo img {
    width: 100%;
    height: auto;
    display: block;
}


.about-intro-bio {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-bio-label {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.about-bio-name {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 6px;
    line-height: 1.05;
}

.about-bio-district {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 1rem;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
}

.about-bio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 26px;
}

.bio-tag {
    background: var(--bg);
    border: 1.5px solid #c8d4e8;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'Open Sans', arial, sans-serif;
}

.about-bio-intro {
    text-align: left;
    font-size: 17px;
    line-height: 1.9;
    color: var(--navy);
    margin: 0 0 1.4em;
    border-left: none;
    padding-left: 0;
}

.about-bio-intro:last-child { margin-bottom: 0; }

/* === CAREER TIMELINE === */

.about-timeline-section {
    background: var(--navy);
    padding: 44px 40px 48px;
}

.about-timeline-title {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin: 0 0 36px;
}

.career-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.career-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 9%;
    right: 9%;
    height: 1px;
    background: rgba(255,255,255,0.15);
}

.career-node {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    position: relative;
}

.career-node-dot {
    width: 13px;
    height: 13px;
    background: var(--gold);
    border-radius: 50%;
    margin: 22px auto 18px;
    position: relative;
    z-index: 1;
}

.career-node-dot-next {
    background: transparent;
    border: 2px solid var(--gold);
    width: 13px;
    height: 13px;
}

.career-node-years {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.career-node-title {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 5px;
}

.career-node-org {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.52);
    line-height: 1.4;
}

.career-node-next .career-node-title { color: rgba(255,255,255,0.55); }
.career-node-next .career-node-org   { color: rgba(255,255,255,0.35); }

/* === ABOUT BODY SECTIONS === */

.about-body {
    max-width: 1150px;
    margin: 0 auto;
    padding: 52px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.about-section h2 {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--red);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.about-section p {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.85;
    margin: 0;
}

/* === ABOUT QUOTE STRIP === */

.about-quote-strip {
    background: var(--bg);
    border-top: 3px solid var(--light-blue);
    border-bottom: 3px solid var(--light-blue);
    padding: 44px 40px;
    text-align: center;
}

.about-quote {
    max-width: 820px;
    margin: 0 auto;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.75;
    font-weight: 400;
    border: none;
    padding: 0;
}

.about-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.5px;
}

/* === ABOUT RESPONSIVE === */

@media screen and (max-width: 860px) {
    .about-intro { padding: 0 0 40px; }
    .about-intro-photo { border-radius: 0; max-width: 100%; margin-bottom: 28px; }
    .about-intro-photo img { height: auto; }
    .about-intro-bio { padding: 0 20px; }
    .about-timeline-section { padding: 36px 20px 40px; }
    .about-quote-strip { padding: 32px 24px; }
}

@media screen and (max-width: 640px) {
    .career-timeline {
        flex-direction: column;
        align-items: stretch;
        padding-left: 32px;
        gap: 0;
        width: fit-content;
        margin: 0 auto;
    }
    .career-timeline::before {
        top: 10px;
        left: 9px;
        right: auto;
        bottom: 40px;
        width: 1px;
        height: auto;
    }
    .career-node {
        flex: none;
        text-align: center;
        padding: 0 0 24px 0;
        position: relative;
    }
    .career-node:last-child { padding-bottom: 0; }
    .career-node-dot {
        position: absolute;
        left: -29px;
        top: 2px;
        margin: 0;
    }
    .about-bio-name { font-size: 2.1rem; }
    .about-quote { font-size: 1.05rem; }
}


/* === CONTACT PAGE === */

.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 40px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}

.contact-form-section h2 {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
}

.contact-required-note {
    font-size: 14px;
    color: #666;
    margin: 0 0 28px;
}

.contact-required-note .req { color: #FF0066; font-weight: 700; }

.contact-field { margin-bottom: 20px; }

.contact-field > label {
    display: block;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 7px;
}

.contact-field .req { color: #FF0066; margin-left: 2px; }

.contact-input {
    width: 100%;
    font: 15px 'Open Sans', arial, sans-serif;
    color: var(--navy);
    background: #fff;
    border: 1.5px solid #c8d0dc;
    border-radius: 6px;
    padding: 11px 14px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.contact-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,63,135,0.12);
}

select.contact-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001546' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
    cursor: pointer;
}

textarea.contact-input {
    height: 140px;
    resize: vertical;
}

.contact-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-radio-pill {
    display: inline-flex;
    align-items: center;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    background: #f8f9fb;
    border: 1.5px solid #c8d0dc;
    border-radius: 6px;
    padding: 9px 16px;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}

.contact-radio-pill input[type=radio] { display: none; }

.contact-radio-pill:has(input:checked) {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.contact-submit-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

input[type=submit].contact-btn-primary,
input[type=reset].contact-btn-secondary {
    -webkit-appearance: none;
    cursor: pointer;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    transition: background 0.2s, color 0.2s;
}

input[type=submit].contact-btn-primary {
    background: var(--navy);
    color: #fff;
    padding: 13px 32px;
}

input[type=submit].contact-btn-primary:hover { background: var(--blue); }

input[type=reset].contact-btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 12px 24px;
}

input[type=reset].contact-btn-secondary:hover {
    background: var(--navy);
    color: #fff;
}

.contact-info-panel {
    background: var(--navy);
    border-radius: 12px;
    overflow: hidden;
    padding: 36px 32px;
    color: #fff;
}

.contact-info-panel h3 {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-info-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    fill: rgba(255,255,255,0.6);
}

.contact-info-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
}

.contact-info-text a { color: var(--light-blue); text-decoration: none; }
.contact-info-text a:hover { text-decoration: underline; }

.contact-info-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 24px 0;
}

.contact-directions-title {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 10px;
}

.contact-directions input[type=text] {
    width: 100%;
    font: 15px 'Open Sans', arial, sans-serif;
    color: var(--navy);
    background: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 12px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

input[type=submit].contact-btn-directions {
    -webkit-appearance: none;
    width: 100%;
    font: 600 14px 'Open Sans', arial, sans-serif;
    color: var(--navy);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 6px;
    padding: 11px;
    cursor: pointer;
    transition: background 0.2s;
}

input[type=submit].contact-btn-directions:hover { background: #fff; }

.contact-privacy-link { margin-top: 4px; }
.contact-privacy-link a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; }
.contact-privacy-link a:hover { color: rgba(255,255,255,0.75); }

@media screen and (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; padding: 36px 24px; gap: 40px; }
}
@media screen and (max-width: 600px) {
    .contact-layout { padding: 28px 16px; gap: 28px; }
    .contact-submit-row { flex-wrap: wrap; }
    input[type=submit].contact-btn-primary,
    input[type=reset].contact-btn-secondary { width: 100%; box-sizing: border-box; }
}
.contact-panel-image {
    width: calc(100% + 64px);
    margin: -36px -32px 28px;
    height: 200px;
    object-fit: cover;
    display: block;
}
.contact-layout,
.contact-info-panel,
.contact-info-text { text-align: left; }/* === PRIVACY PAGE === */

.privacy-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 52px 40px 64px;
}

.privacy-body p {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.85;
    margin: 0 0 20px;
}

.privacy-body p:last-child { margin-bottom: 0; }

.privacy-section {
    padding: 40px 0;
}

.privacy-section + .privacy-section {
    border-top: 1px solid #dde2ea;
}

.privacy-section:first-child { padding-top: 0; }
.privacy-section:last-child  { padding-bottom: 0; }

.privacy-section h2 {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--red);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.privacy-section p {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.85;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .privacy-body { padding: 36px 24px 48px; }

.privacy-body p {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.85;
    margin: 0 0 20px;
}

.privacy-body p:last-child { margin-bottom: 0; }
    .privacy-section { padding: 32px 0; }
}


/* === UNDER CONSTRUCTION === */

.under-construction {
    max-width: 600px;
    margin: 0 auto;
    padding: 72px 40px;
    text-align: center;
}

.under-construction-icon svg {
    width: 56px;
    height: 56px;
    fill: var(--gold);
    margin-bottom: 24px;
}

.under-construction h2 {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px;
}

.under-construction p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--navy);
    margin: 0 0 32px;
}

.under-construction-btn,
.under-construction-btn:link,
.under-construction-btn:visited {
    display: inline-block;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    background: rgba(255,255,255,0.90);
    border: 2px solid var(--navy);
    border-radius: 6px;
    padding: 14px 28px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.under-construction-btn:hover {
    background: var(--navy);
    color: #ffffff;
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media screen and (max-width: 768px) {
    .under-construction { padding: 52px 24px; }
}

/* === DONATE PAGE === */

.donate-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 56px 40px 72px;
    text-align: center;
}

.donate-body h2 {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px;
}

.donate-body > p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--navy);
    margin: 0 0 36px;
}

.donate-card {
    background: var(--bg);
    border: 1.5px solid #dde2ea;
    border-left: 5px solid var(--navy);
    border-radius: 8px;
    padding: 28px 32px;
    text-align: left;
    margin-bottom: 36px;
}

.donate-card-title {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--navy);
    opacity: 0.6;
    margin: 0 0 8px;
}

.donate-card p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--navy);
    margin: 0;
}

.donate-btn,
.donate-btn:link,
.donate-btn:visited {
    display: inline-block;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    background: rgba(255,255,255,0.90);
    border: 2px solid var(--navy);
    border-radius: 6px;
    padding: 14px 32px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.donate-btn:hover {
    background: var(--navy);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media screen and (max-width: 768px) {
    .donate-body { padding: 40px 24px 56px; }
    .donate-card { padding: 22px 20px; }
}

.brand-logo {
    transition: height 0.4s ease;
    height: 62px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media screen and (max-width: 1150px) {
    .brand-logo { height: 36px; }
}

/* === MOBILE HERO PORTRAIT GHOST === */
/* Comes after earlier display:none rules in cascade — overrides without !important */

.slide-tagline-mobile { display: none; }

/* Tagline strip — shown on all sizes between hero and election bar */
.slide-tagline { display: none; }

.tagline-strip {
    background: var(--navy);
    color: rgba(255,255,255,0.88);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.20);
    line-height: 1.55;
}
.tagline-strip .tagline-flag { height: 1.4em; vertical-align: middle; }

/* Hero title banner — responsive */
@media screen and (max-width: 980px) {
    .slide-hero-title { top: 76px; height: 60px; }
}
@media screen and (max-width: 768px) {
    .slide-hero-title { top: 72px; height: 50px; font-size: clamp(12px, 3vw, 18px); }
}
@media screen and (max-width: 600px) {
    .slide-hero-title { top: 72px; height: 48px; font-size: 13px; letter-spacing: 0.02em; padding: 0 20px; }
}
@media screen and (max-width: 480px) {
    .slide-hero-title { top: 72px; height: 44px; font-size: 11px; letter-spacing: 0.01em; padding: 0 12px; }
}


/* Tagline bar — responsive */
@media screen and (max-width: 980px) {
    .slide-record { top: 136px; height: 56px;  }
}
@media screen and (max-width: 280px) {
    .slide-record { display: none; }
}


/* === MOBILE HERO — final override, must stay at end of file === */
@media screen and (max-width: 900px) {
    .slide-flag {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        height: auto;
        min-height: 0;
        background-attachment: scroll;
    }
    .slide-frank {
        order: 1;
        display: block;
        position: relative;
        width: 80%;
        height: auto;
        max-height: 60vw;
        min-height: 180px;
        object-fit: contain;
        object-position: center bottom;
        margin: 0 auto;
        flex-shrink: 0;
        transform: none;
        bottom: auto;
        left: auto;
        pointer-events: none;
    }
    .slide-copy {
        order: 2;
        position: relative;
        background: var(--bg);
        border-top: 4px solid var(--navy);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        align-self: stretch;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        z-index: 2;
        margin: 0;
        padding: 28px 24px 36px;
        text-align: center;
        overflow: hidden;
        box-shadow: 0 -4px 18px rgba(0,0,0,0.08);
    }
    .slide-about {
        max-width: 100%;
        overflow-wrap: break-word;
        font-size: clamp(14px, 2.5vw, 18px);
    }
}
@media screen and (max-width: 480px) {
    .slide-frank { max-height: 72vw; }
    .slide-about { font-size: clamp(13px, 3.5vw, 16px); }
}

/* === MOBILE TAGLINE STRIP (<=600px) — navy band between portrait and copy box === */
@media screen and (max-width: 600px) {
    .slide-record {
        position: relative;
        order: 2;
        left: auto;
        top: auto;
        bottom: auto;
        right: auto;
        width: 100%;
        height: auto;
        min-height: 0;
        background: var(--navy);
        color: rgba(255,255,255,0.92);
        white-space: normal;
        text-align: center;
        padding: 14px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0 8px;
        font-size: clamp(11px, 2.8vw, 14px);
        font-weight: 700;
        letter-spacing: 0.07em;
        margin: 0;
        text-shadow: none;
    }
    .slide-record .slide-record-flag {
        height: 1.8em;
    }
    .slide-copy {
        order: 3;
    }
}


/* ===================================================
   HERO SECTION — new two-column layout
   =================================================== */

.hero-section {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 460px;
    background: #ffffff;

    overflow: hidden;
    gap: 0;
    margin-top: -84px;
    border-bottom: 4px solid var(--red);
}

.hero-left {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 48px 40px 52px;
    z-index: 1;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.hero-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-name-line {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(28px, 4vw, 58px);
    font-weight: 900;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
}

.hero-name-line:first-child {
    font-size: clamp(36px, 5.5vw, 72px);
    letter-spacing: 0.02em;
}

.hero-name-line sup { text-transform: lowercase; font-size: 0.55em; }

.hero-name-for {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(20px, 2.6vw, 38px);
    font-weight: 700;
    color: var(--red);
    text-transform: lowercase;
    font-style: italic;
    display: block;
    margin: 2px 0;
}

.hero-tagline {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(13px, 1.4vw, 17px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: var(--navy);
    padding: 10px 18px;
    line-height: 1.5;
    display: block;
    width: fit-content;
    margin: 0 auto 24px;
    text-align: center;
    border-radius: 3px;
}
.hero-tagline-flag {
    height: 1.4em;
    width: auto;
    vertical-align: middle;
    margin: 0 0.2em;
}

.hero-body {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.75;
    margin: 0;
    text-align: left;
}

.hero-right {
    flex: 1 1 50%;
    position: relative;
    min-height: 400px;
    margin-left: -120px;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 28%);
    mask-image: linear-gradient(to right, transparent 0%, black 28%);


}
.hero-flag-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.85;
    z-index: 0;
}

.hero-frank {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transform: translateX(-50%) translateY(5px) translateZ(0);
    height: 100%;
    width: auto;
    max-width: 110%;
    object-fit: contain;
    object-position: center bottom;
    z-index: 1;
    pointer-events: none;
    backface-visibility: hidden;
    filter: drop-shadow(0 0 24px rgba(0,0,0,0.6)) drop-shadow(0 4px 16px rgba(0,0,0,0.45));
}

@media screen and (max-width: 860px) {
    .hero-section {
        flex-direction: column;
    }
    .hero-left {
        padding: 36px 28px 28px;
        flex: none;
        order: 2;
    }
    .hero-right {
        flex: none;
        order: 1;
        height: 55vw;
        min-height: 260px;
        -webkit-mask-image: linear-gradient(to bottom, black 80%, rgba(0,0,0,0.95) 83%, rgba(0,0,0,0.85) 86%, rgba(0,0,0,0.7) 89%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.27) 95%, rgba(0,0,0,0.08) 98%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 80%, rgba(0,0,0,0.95) 83%, rgba(0,0,0,0.85) 86%, rgba(0,0,0,0.7) 89%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.27) 95%, rgba(0,0,0,0.08) 98%, transparent 100%);
    }
    .hero-frank { top: 66px; height: calc(100% - 66px); }
    .hero-tagline { display: block; width: 100%; box-sizing: border-box; }
    .hero-body { max-width: 100%; }
}

@media screen and (max-width: 480px) {
    .hero-right {
        order: 1;
        height: 72vw;
        -webkit-mask-image: linear-gradient(to bottom, black 80%, rgba(0,0,0,0.95) 83%, rgba(0,0,0,0.85) 86%, rgba(0,0,0,0.7) 89%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.27) 95%, rgba(0,0,0,0.08) 98%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 80%, rgba(0,0,0,0.95) 83%, rgba(0,0,0,0.85) 86%, rgba(0,0,0,0.7) 89%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.27) 95%, rgba(0,0,0,0.08) 98%, transparent 100%);
    }
    .hero-left { order: 2; padding: 20px 20px 20px; }
    .hero-tagline { font-size: 11px; padding: 10px 14px; display: block; width: calc(100% + 40px); margin-left: -20px; box-sizing: border-box; }
    .hero-frank { top: 66px; height: calc(100% - 66px); }
}

/* ===================================================
   MENU — logo and social icons
   =================================================== */

.menu-home-btn {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    margin-right: auto;
}

.menu-home-icon {
    height: 68px;
    width: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.menu-home-btn:hover .menu-home-icon { opacity: 0.8; }

.menu-social {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
    flex-shrink: 0;
}

.menu-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.menu-social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--navy);
    transition: fill 0.2s;
}

.menu-social-icon:hover svg { fill: var(--red); }
.menu-social-icon:hover { transform: translateY(-1px); }

@media screen and (max-width: 1150px) {
    .menu-home-icon { height: 50px; }
    .menu-social { gap: 4px; margin-left: 10px; }
    .menu-social-icon { width: 26px; height: 26px; }
    .menu-social-icon svg { width: 17px; height: 17px; }
}

@media screen and (max-width: 768px) {
    .menu-social { display: none; }
}

/* ===================================================
/* === RESPONSIVE NAVBAR CLEARANCE === */

@media screen and (max-width: 1150px) {
    body { padding-top: 66px; }
    .hero-section { margin-top: -66px; }

}

@media screen and (max-width: 520px) {
    body { padding-top: 66px; }
    .hero-section { margin-top: -66px; }
}

/* EVENTS PAGE
   =================================================== */

.event-card {
    display: flex;
    flex-direction: row;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid #dde2ea;
    align-items: flex-start;
}

.event-card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--navy);
    color: #ffffff;
    border-radius: 8px;
    padding: 14px 20px;
    min-width: 72px;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.1;
}

.event-month {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.event-day {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin: 4px 0;
}

.event-year {
    font-size: 12px;
    opacity: 0.7;
}

.event-card-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.event-card-title {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 10px;
}

.event-card-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy);
    margin: 0 0 20px;
}

.event-photos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.event-photo {
    width: calc(50% - 6px);
    max-width: 380px;
    height: 340px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #dde2ea;
}

.event-photo-single {
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 600px) {
    .event-card { flex-direction: column; gap: 12px; padding-top: 0; }
    .event-card-date { align-self: center; }
    .event-day { font-size: 26px; }
    .event-photo { width: 100%; max-width: 100%; height: 62vw; }
    .event-photo.event-photo-single { height: auto; object-fit: contain; }
    .event-photos { margin-left: 0; width: 100%; }
    .event-card-title { text-align: center; }
}