@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:#5a80c7;
	text-decoration:none;
}

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

#herosubtitle a:link
{
	color:#f25a28;
}

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;
}

ul
{
	margin-left:20px;
}

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;
	justify-content:space-between;
}

/* 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: right 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: #f25a28;
}

#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: 0px 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;
}

/* ==================== NAVIGATION ====================== */

/* Safely reset only the navigation list */
.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none; /* Removes bullet points */
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

/* Navbar Container */
.navbar {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;
}

.nav-logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Desktop Menu (Horizontal) */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-links {
    color: #fff;
    text-decoration: none !important;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-links:hover {
    color: #5a80c7;
}

/* Hide Hamburger Menu Icon on Desktop */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

a.nav-links
{
	color:#000;
}

/* =========== MOBILE NAVIGATION ============== */

/* --- Responsive Media Query (Mobile View) --- */
@media screen and (max-width: 768px) {
    /* Display the Hamburger Icon */
    .menu-toggle {
        display: block;
    }
	
	/* Navbar Container stays compact */
	.navbar {
		background-color: #1a1a2e;
		position: relative;
		overflow: hidden;
	}
	
	.navbar.active
	{
		overflow: visible;
	}

    /* Transform Horizontal Menu into a Dropdown Stack anchored to the right */
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100vw; /* Full width viewport space */
        position: absolute;
        top: 50px; /* Right beneath the navbar bar */
        right: -100vw; /* Hidden safely off-screen to the right side */
        left: auto; /* Overrides previous horizontal left mechanics */
        opacity: 0;
        transition: all 0.4s ease;
        background-color: #1a1a2e;
        padding: 20px 0;
		align-items: flex-start;
		z-index: 998;
		box-sizing: border-box;
    }
	
	.nav-menu li
	{
		margin-bottom:20px;
		width: 100%;
	}

    /* When active, lock right edge to screen edge and slide leftwards */
    .nav-menu.active {
        right: -20px;
        opacity: 1;
    }

    .nav-links {
        padding: .25rem 2.5rem;
        width: 100%;
        display: block;
        text-align: left;
	}
	
	a.nav-links
	{
		color:#fff;
	}

    /* Hamburger Animation to 'X' when active */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* 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: 26px;
	}

	#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;
}


/* ----------- Subscription Plans ------------- */

.pricing-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  position: relative;  /* ensure proper stacking */
  z-index: 1;          /* keeps plans above background */
}

.plan {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 30px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.plan h2 {
  margin-bottom: 10px;
  margin-top:0px;
  font-size: 1.8rem;
  color: #333;
}

.subtitle {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.features li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
  color:#000;
  font-family: "Nunito", sans-serif;
  font-weight:normal;
  font-size:18px;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0c8db7;
  font-weight: bold;
}

.subscribe-btn {
  background-color: #5f7eb5;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
  margin-top:25px;
  display:flex;
  justify-content:center;
}

a.subscribe-btn,
a.subscribe-btn:link,
a.subscribe-btn:visited {
  color: #ffffff !important;
  text-decoration: none;
}

.subscribe-btn:hover {
  background-color: #5f7eb5;
}

@media (max-width: 768px) {
  .pricing-section {
    flex-direction: column;
    align-items: center;
  }

  #subscribeband {
    position: relative;
    z-index: 2;
    margin-bottom: 80px; /* pushes next section down */
  }

  .pricing-section {
    z-index: 3;
  }

  #grayband {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 5px; /* extra breathing room */
    clear: both;
  }
}


/* ------------ Styling for Checkbox ------------ */

/* Styling for the checkbox container */
.terms-container {
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    color: #333;
}
.terms-container input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}
.terms-container a {
    color: #4a90e2;
    text-decoration: underline;
}

/* Disabled state for the form button */
.submit-btn:disabled {
    cursor: not-allowed !important;
}

/* Disabled state for the Stripe anchor links */
.subscribe-btn.disabled {
    cursor: not-allowed !important;
    pointer-events: none; /* Prevents clicks entirely */
}