/* ********************************************************************************************
* OntarioTECK VBA Developers
* Developed by Gustavo Miller
* 
* Date Created : 2026-05-31 4:51:51 PM
* 
* Location: D:\Acorns and Oaks (AAO)\AAO\wwwroot\
* Filename: css\site.css
* ********************************************************************************************/

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.emailform {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
    gap: 10px;
}
/***************************************************************************************
 * Ontario TECK VBA Developers
 * License - 2023/2026
 * Date: 2026-05-14 5:39:00 AM
 *
 * Styling the Navigation bar. We put in here since we do not want to messup the 
 * original styling 
 ***************************************************************************************/
#header {
    background-color: #6aa84f
}

#navmenu {
    background-color: #6aa84f;
}

    #navmenu .nav-link {
        color: #ffffff; /* dark text */
    }

        #navmenu .nav-link:hover,
        #navmenu .nav-link.Active {
            color: #000000;
        }

.navmenu-list {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .navmenu-list li {
        margin-right: 20px;
    }

        .navmenu-list li:last-child {
            margin-right: 0;
        }

.nav-spacer {
    margin-left: auto;
}

.intro-oaks-section {
    position: relative; /* Needed for overlay */
    padding: 60px 20px; /* spacing */
    color: #ffffff; /* ensure readable text */
    background-image: url('http://acorns.oaks.miller-hs.com/images/acorns/background.jpg'); /* your image */
    background-size: cover; /* fill area */
    background-position: center; /* center image */
    background-repeat: no-repeat;
}

    .intro-oaks-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(34, 80, 34, 0.6); /* darker green overlay */
        z-index: 1;
    }

    .intro-oaks-section > * {
        position: relative;
        z-index: 2;
    }

/***************************************************************************************
 * Ontario TECK VBA Developers
 * License - 2023/2026
 * Date: 2026-05-14 5:39:00 AM
 *
 * Styling the portal, insert an image behind the front page
 ***************************************************************************************/
#intro {
    position: relative; /* required for overlay */
    overflow: hidden;
    display: flex;
    align-items: center; /* vertical centering */
    justify-content: center;
    min-height: 90vh;
    width: 100%;
    background-image: url('/images/backgrounds/background.jpg'); /* YOUR IMAGE */
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

    #intro::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(34, 70, 34, 0.1); /* soft green overlay */
        z-index: 1;
    }

    #intro .content-wrapper {
        position: relative; /* ensures above overlay */
        z-index: 2;
        max-width: 800px; /* prevents text from stretching too wide */
        margin: 0 auto;
        padding: 40px 20px;
        color: #000000; /* readable on background */
    }

.hero-title {
    color: #000000;
}

    .hero-title h1 {
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 75px;
    }

    .hero-title p {
        font-size: 1.15rem;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #000000;
    }

.hero-btn {
    margin-top: 60px;
    padding: 10px 20px;
    border: 1px solid #000000;
    color: #000000;
}

    .hero-btn:hover {
        background-color: seagreen;
        color: #ffffff; /* black text on hover */
    }

footer {
    position: absolute;
    padding: 5px 10px 5px 10px;
    bottom: 0;
    width: 100%;
    height: 30px;
    white-space: nowrap;
    line-height: 20px; /* Vertically center the text there */
}
