﻿/*General Page css*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    /* Neutralised 2026: the legacy tan / olive / gold palette has been
       replaced by the "Opus Studio" scheme so tokens like var(--color-green)
       that appear all over style.css resolve to modern charcoal/blue
       instead of forest. */
    --color-green: #0f172a;
    --color-red: #dc2626;
    --color-darkerRed: #991b1b;
    --color-gold: #2563eb;
    --color-darkGold: #1d4ed8;
    --color-tan: #eef1f4;
    --color-purple: #2563eb;
    --color-lightGrey: #f1f5f9;
    --color-darkGrey: #cbd5e1;
    --navbar-height: 64px;
    --footer-height: 100px;
    --test-outline: transparent;
}

body {
    min-height: 100vh;
    height: auto;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #eef1f4;
    outline: 3px solid var(--test-outline);
}

/*Nav bar css*/
.container {
    max-width: 1000px;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    margin-left: auto;
    margin-right: auto;
    outline: 3px solid var(--test-outline);
}

#navbar {
    position: fixed;
    height: var(--navbar-height);
    background-color: var(--navbar-bg-color);
    left: 0;
    right: 0;
    outline: 3px solid var(--test-outline);
    z-index: +10;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    outline: 3px solid var(--test-outline);
}

.navbar-item {
    margin: 0.4em;
    width: 100%;
    outline: 3px solid var(--test-outline);
}

.home-link {
    color: var(--navbar-text-color);
    text-decoration: none;
    display: flex;
    font-weight: 400;
    align-items: center;
    outline: 3px solid var(--test-outline);
}

    .home-link:is(:focus, :hover) {
        color: var(--navbar-text-color-focus);
        outline: 3px solid var(--test-outline);
    }

.navbar-link, .navbar-item a {
    position: relative;
    color: var(--navbar-text-color);
    background-color: var(--navbar-bg-color);
    border: transparent;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    align-items: center;
    outline: 3px solid var(--test-outline);
    font-family: 'Times New Roman', serif;
    justify-content: center;
    width: 100%;
    padding: 0.4em 0.8em;
    border-radius: 5px;
    transition-duration: 0.4s;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    word-break: keep-all;
}

.navbar-item form {
    width: 100%;
}

.navbar-item form .navbar-link {
    width: 100%;
    cursor: pointer;
    min-width: 92px;
}

.navbar-link:focus-visible,
.navbar-item a:focus-visible,
#navbar-toggle:focus-visible,
.home-link:focus-visible {
    outline: 2px solid var(--navbar-bg-contrast);
    outline-offset: 2px;
}
    .navbar-link:is(:focus, :hover), .navbar-item a:is(:focus, :hover) {
        color: var(--navbar-text-color);
        background-color: var(--navbar-bg-contrast);
        outline: 3px solid var(--test-outline);
    }

.navbar-logo {
    background-color: var(--navbar-bg-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-right: 0.5em;
    outline: 3px solid var(--test-outline);
}

    .navbar-logo img {
        display: block;
        max-width: 300%;
        margin: -30px 0px 0px -40px;
        outline: 3px solid var(--test-outline);
    }

#navbar-toggle {
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    outline: 3px solid var(--test-outline);
}

.icon-bar {
    display: block;
    width: 25px;
    height: 4px;
    margin: 2px;
    background-color: var(--navbar-text-color);
    outline: 3px solid var(--test-outline);
}

#navbar-toggle:is(:focus, :hover) .icon-bar {
    background-color: var(--navbar-text-color-focus);
    outline: 3px solid var(--test-outline);
}

#navbar-toggle[aria-expanded="true"] .icon-bar:is(:first-child, :last-child) {
    position: absolute;
    margin: 0;
    width: 30px;
    outline: 3px solid var(--test-outline);
}

#navbar-toggle[aria-expanded="true"] .icon-bar:first-child {
    transform: rotate(45deg);
    outline: 3px solid var(--test-outline);
}

#navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
    opacity: 0;
    outline: 3px solid var(--test-outline);
}

#navbar-toggle[aria-expanded="true"] .icon-bar:last-child {
    transform: rotate(-45deg);
    outline: 3px solid var(--test-outline);
}

#navbar-toggle[aria-expanded="true"] + #navbar-menu {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
    outline: 3px solid var(--test-outline);
    pointer-events: auto;
}

    #navbar-toggle[aria-expanded="true"] + #navbar-menu .navbar-links {
        padding: 1em;
        outline: 3px solid var(--test-outline);
    }
#navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
    outline: 3px solid var(--test-outline);
    pointer-events: none;
}


.navbar-links {
    list-style: none;
    position: absolute;
    background-color: var(--navbar-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    margin: 1.4rem;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    outline: 3px solid var(--test-outline);
}


@media screen and (min-width: 700px) {
    #navbar-toggle,
    #navbar-toggle[aria-expanded="true"] {
        display: none;
        outline: 3px solid var(--test-outline);
    }

        #navbar-menu,
        #navbar-toggle[aria-expanded="true"] #navbar-menu {
            visibility: visible;
            opacity: 1;
            position: static;
            display: block;
            height: 100%;
            outline: 3px solid var(--test-outline);
            pointer-events: auto;
        }

            .navbar-links,
            #navbar-toggle[aria-expanded="true"] #navbar-menu .navbar-links {
                margin: 0;
                padding: 0;
                box-shadow: none;
                position: static;
                flex-direction: row;
                width: 100%;
                height: 100%;
                outline: 3px solid var(--test-outline);
            }

    .navbar-links .navbar-item {
        width: auto;
        flex: 0 0 auto;
    }
}

/* footer css (legacy global default). This rule applies to EVERY
   <footer> on the site — including the child <footer> that
   testimonial cards render. Using a neutral-transparent background
   here prevents the old forest block from painting testimonial
   avatars. Public / logged-in page footers provide their own
   explicit background via .tt-footer / body.loggedin-shell footer
   overrides. */
footer {
    position: relative;
    width: 100%;
    background-color: transparent;
    padding: 14px 20px;
    min-height: 0;
    height: auto;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

    .footer-content p {
        max-width: 500px;
        margin: 10px;
        flex: 1 1 100%;
        font-size: 14px;
        color: #0f172a;
        word-spacing: 2px;
        text-transform: capitalize;
        overflow-wrap: break-word;
    }

        .footer-content p a {
            color: #2563eb;
            font-size: 16px;
            text-decoration: none;
        }
