﻿/* Base / Reset */
body {
    background-color: #f2f6f3; /* soft green tint */
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

a {
    color: #006400;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Full-page wrapper centered with border/shadow */
.site-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 15px auto 20px auto;
    background-color: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    min-height: 90vh;
    border-radius: 6px;
    overflow: hidden;
}

/* Header / Nav */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

/* ASP.NET Menu styling */
.site-nav .menu {
    background: transparent;
    border: none;
}

.site-nav .menuItem {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 25px;
    color: #333;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.site-nav .menuItem:hover {
     background-color: #e0f3e0;
     color: #006400;
 }


/* Banner */
.banner {
    background: url('../Content/banner.jpg') center center/cover no-repeat;
    position: relative;
    text-align: center;
    color: white;
    padding: 80px 20px;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
}

.banner-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
}

.banner p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ddd;
}

.btn-primary {
    background-color: #ffffff;
    color: #006400;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #f2f2f2;
}


/* Content */
.content {
    padding: 30px;
    flex-grow: 1;
}

/* Footer */
.site-footer {
    background-color: #555555; /* Dark gray */
    padding: 20px 30px;
    border-top: none; /* Cleaner break */
    font-size: 14px;
    color: #ccc; /* Light text for contrast */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-right a {
    color: #666;
    margin-left: 10px;
}

    .footer-right a:hover {
        color: #333;
    }

/* Forms */
.txtInput {
    width: 100%;
    max-width: 500px;
    padding: 5px;
    margin-bottom: 0px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btnPrimary {
    background-color: #006400;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btnPrimary:hover {
    background-color: #228B22;
}

.btnPrimary:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

input.btnPrimary:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
}


/* Utility */
.section {
    padding: 40px 0;
}

.section-alt {
    background-color: #fafafa;
}
/* Form Page */
.form-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.form-left, .form-right {
    flex: 1 1 300px;
    min-width: 300px;
}

.form-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

    .form-list li {
        margin-bottom: 10px;
    }

    .form-list a {
        color: #006400;
        text-decoration: none;
        /*font-weight: bold;*/
    }

        .form-list a:hover {
            text-decoration: underline;
        }

.form-right .btn-primary {
    display: inline-block;
    margin-top: 10px;
}
.hero-heading {
    margin-bottom: 30px;
}

.company-name {
    font-size: 32px;
    color: #006400; /* dark green */
    margin-bottom: 0;
}

.subtitle {
    font-size: 24px;
    color: #000000; /* black */
    margin-top: 0;
    font-weight: normal;
}
.tagline {
    font-size: 18px;
    color: #444;
    font-style: italic;
    margin-top: 2px;
    margin-bottom: 30px;
    /*max-width: 1000px;*/
}
.notRobot {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-top: 10px;
}




