/*
Theme Name: Frentech Electrical Rewinders
Theme URI: https://frentechelectricalrewinders.co.ke
Description: Professional WordPress theme for Frentech Electrical Rewinders — Industrial Engineering Specialists in Kitengela, Kenya. Brand colors: #194b72 (Navy) and #b7110c (Red).
Version: 2.1.0
Author: Antigravity
Text Domain: frentech
Tags: business, professional, industrial
*/

/* ─── Bootstrap Color Overrides ──────────────────────── */
:root {
    --bs-primary: #194b72;
    --bs-primary-rgb: 25, 75, 114;
    --bs-danger: #b7110c;
    --bs-danger-rgb: 183, 17, 12;
    --bs-link-color: #194b72;
}

/* ─── WordPress Body ──────────────────────────────────── */
body {
    font-family: 'Outfit', sans-serif;
    background-color: #f5f7fa;
    color: #4a5568;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #1a2332;
}

a {
    color: #194b72;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b7110c;
}

/* ─── Object Fit Utility ──────────────────────────────── */
.object-fit-cover {
    object-fit: cover;
}

/* ─── Scroll Reveal (fallback) ────────────────────────── */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-section.show {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Form label utility ─────────────────────────────── */
.form-label {
    font-size: 0.82rem;
    font-weight: 600;
}

/* ─── Bootstrap btn override (uses theme gradient) ───── */
.btn-primary {
    background: #194b72 !important;
    border-color: #194b72 !important;
}

.btn-primary:hover {
    background: #0f2e47 !important;
    border-color: #0f2e47 !important;
}

.btn-danger {
    background: #b7110c !important;
    border-color: #b7110c !important;
}

/* ─── Accordion color ────────────────────────────────── */
.accordion-button:not(.collapsed) {
    color: #194b72 !important;
    background-color: rgba(25, 75, 114, 0.04) !important;
}