/* ============================================================
   Zenufacture site-specific overrides
   Add all customisations below — loaded after the theme CSS
   so these rules always win.
   ============================================================ */

/* ---- Brand primary color: #2491c4 ---- */
:root,
[data-bs-theme="light"],
[data-bs-theme="dark"] {
    --bs-primary: #2491c4;
    --bs-primary-rgb: 36, 145, 196;
    --bs-link-color: #2491c4;
    --bs-link-color-rgb: 36, 145, 196;
    --bs-link-hover-color: #1d749d;
    --bs-link-hover-color-rgb: 29, 116, 157;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #2491c4;
    --bs-btn-border-color: #2491c4;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #1f7ba7;
    --bs-btn-hover-border-color: #1d749d;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1d749d;
    --bs-btn-active-border-color: #1b6d93;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #2491c4;
    --bs-btn-disabled-border-color: #2491c4;
}

.btn-outline-primary {
    --bs-btn-color: #2491c4;
    --bs-btn-border-color: #2491c4;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #2491c4;
    --bs-btn-hover-border-color: #2491c4;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #2491c4;
    --bs-btn-active-border-color: #2491c4;
    --bs-btn-disabled-color: #2491c4;
    --bs-btn-disabled-border-color: #2491c4;
}

.text-bg-primary {
    background-color: #2491c4 !important;
    color: #fff !important;
}

/* Remove Assana decorative vertical stripe lines */
.stripes {
    display: none !important;
}

/* Navbar logo — 1.5× theme desktop size (7.5rem → 11.25rem) */
.navbar-brand,
.navbar-expand-lg .navbar-brand {
    width: 11.25rem !important;
}

/* Honeypot anti-spam field — invisible to humans, not display:none so bots still render it */
.hp-company {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}
