/* ==============================
   Site.css - Custom Branding
   ============================== */

/* Brand colors */
:root {
    --bs-primary: #7B6AFF; /* Indigo-Violet from logo */
    --bs-primary-rgb: 123, 106, 255;
    --bs-link-color: #7B6AFF;
    --bs-link-hover-color: #5a47d6;
}

/* Body background: light gradient with indigo accent */
body {
    background: linear-gradient(135deg, #fdfdff, #f3f1ff);
    color: #212529;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Navbar - light background */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #eaeaea;
}

    .navbar a {
        color: var(--bs-primary) !important;
        font-weight: 500;
    }

        .navbar a:hover {
            color: var(--bs-link-hover-color) !important;
        }

/* Footer - use brand accent */
footer {
    background-color: var(--bs-primary) !important;
    color: #fff;
}

    footer a {
        color: #fff !important;
    }

        footer a:hover {
            color: #e6e6ff !important;
        }

/* Buttons */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

    .btn-primary:hover {
        background-color: #5a47d6;
        border-color: #4a38b8;
    }

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

    .btn-outline-primary:hover {
        background-color: var(--bs-primary);
        color: #fff;
    }

/* Form focus outline in Indigo */
.form-control:focus, .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Links */
a {
    color: var(--bs-link-color);
    text-decoration: none;
}

    a:hover {
        color: var(--bs-link-hover-color);
        text-decoration: underline;
    }


.brand-text {
    font-family: "Helvetica Neue", Arial, sans-serif; /* Clean geometric sans */
    /*font-family: 'Inter', sans-serif;*/
    font-weight: 700; /* Bold */
    font-size: 1.5rem; /* Adjust to match image */
    color: #0a1633; /* Dark navy/black, tweak if needed */
    line-height: 1; /* Keeps it tight */
}
