@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Nunito", sans-serif;
}

a:link
{
	color:#ffe66f;
	text-decoration:none;
}

a:link:hover
{
	text-decoration:underline;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
	margin-top:0px;
	color:#5a80c7;
	font-family: "Nunito", sans-serif;
}

h2 {
    color: #84c3ff;
    font-size: 24px;
	font-family: "Nunito", sans-serif;
}

h3 {
    font-size: 24px;
	font-family: "Nunito", sans-serif;
}

h4 {
    font-size: 26px;
    margin-bottom: 20px;
	margin-top:0px;
	color:#5a80c7;
	font-family: "Nunito", sans-serif;
}

p,
li {
    font-size: 18px;
    line-height: 1.6;
}

/* HEADER */

#header {
    height: 86px;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
}

/* HERO */

#hero {
    min-height: 440px;
    background-image: url("images/hero-gradient.jpg");
    background-repeat: repeat-x;
    background-size: 1px 440px;
}

.hero-content {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    background-image: url("images/Hero.jpg");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 1200px 440px;
}

#herotitle {
    max-width: 800px;
    color: white;
    font-size: 48px;
    font-weight:300;
}

#herosubtitle {
    max-width: 700px;
    color: white;
    font-size: 30px;
    margin-top: 10px;
}

.highlighted {
    color: #ecdc16;
}

#contactus {
    margin-top: 30px;
}

.shadow
{
	display:flex;
	width:100%;
	height:35px;
	background: linear-gradient(to bottom, #dedede 0px, #ffffff 35px);
    background-repeat: no-repeat;
}

/* TOP SECTION */

.top-section {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 30px 20px;
    flex-wrap: wrap;
}

#TopLeftPane {
    flex: 1;
    padding-top: 15px;
}

#TopRightPane {
    flex: 0 0 250px;
    min-width: 300px;
}

.mid-section {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 30px 20px;
    flex-wrap: wrap;
}

#MidLeftPane {
    flex: 1;
    padding-top: 15px;
}

#MidRightPane {
    flex: 0 0 250px;
    min-width: 300px;
}


/* FEATURES BAND */

#grayband {
    background: #2d2d2d;
    padding: 60px 0;
}

.grayband-inner {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

#graybandleft,
#graybandright {
    flex: 1;
    min-width: 300px;
}

.boxtext {
    color: white;
}

/* SCREENSHOTS */

#additionalinfo
{
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* ABOUT */

#lightgrayband {
    background: #d8d8d8;
    padding: 60px 0;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

#AboutLeftPane {
    flex: 1;
    min-width: 300px;
}

#AboutRightPane {
    flex: 0 0 140px;
}

/* FOOTER */

#charcoalband {
    background: #2d2d2d;
    padding: 60px 0;
}

.footer-inner {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

#FooterPane {
    flex: 1;
    min-width: 220px;
	justify-content: center;
	text-align:center;
}

#charcoalband p {
    color: white;
}

/* RESPONSIVE */

@media (max-width: 720px) {

#hero {
    min-height: 237px;
    background-image: url("images/hero-gradient.jpg");
    background-repeat: repeat-x;
    background-size: 1px 237px;
}

#contactus {
    margin-top: 8px;
}

#contactus img
{
     width:50%;
     height:50%;
}

    #herotitle {
    /* Stacking it 4 times makes a massive, deep dark glow */
    text-shadow: 0 0 40px #000, 0 0 40px #000, 0 0 40px #000, 0 0 40px #000;
	font-size:24px;
	}

	#herosubtitle {
		text-shadow: 0 0 40px #000, 0 0 40px #000, 0 0 40px #000, 0 0 40px #000;
		font-size:20px;
	}

    .hero-content {
        background-position: top right;
        justify-content: flex-start;

	min-height: 237px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    background-image: url("images/Hero.jpg");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 630px 237px;
    }

	.hero-content2 {
		min-height: 237px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

}

/* ============= FEEDBACK FORM STYLES =============== */
.lead-form-container { 
    max-width: 450px; 
    margin: 30px auto; 
    font-family: Arial, sans-serif; 
    padding: 20px; 
    border: 0px solid #ccc; 
    border-radius: 8px; 
    background-color: #eff0f1;
}
.form-group { 
    margin-bottom: 15px; 
}
.form-group label { 
    display: block; 
    margin-bottom: 5px; 
    font-weight: bold; 
    color: #333;
}
.form-group input { 
    width: 100%; 
    padding: 10px; 
    box-sizing: border-box; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    font-size: 14px;
}
.submit-btn { 
    background-color: #5f7eb5; 
    color: white; 
    padding: 12px 15px; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    width: 100%; 
    font-size: 16px; 
    font-weight: bold;
}
.submit-btn:hover { 
    background-color: #0056b3; 
}
#form-message { 
    margin-top: 15px; 
    padding: 10px; 
    display: none; 
    border-radius: 4px; 
    text-align: center; 
    font-weight: bold;
}
#form-message.success { 
    background-color: #d4edda; 
    color: #155724; 
    border: 1px solid #c3e6cb;
}
#form-message.error { 
    background-color: #f8d7da; 
    color: #721c24; 
    border: 1px solid #f5c6cb;
}