/* ==========================================================================
   CUSTOM.CSS - Per-Company Customization
   ==========================================================================
   This file is loaded AFTER style.css and overrides the default theme.
   Each company gets their own copy of this file.

   PALETTE:  Gold #b9945d  |  Black #000000
     - Header                -> BLACK #000000  (light text on top)
     - Top nav bar           -> GOLD  #b9945d
     - Footer                -> BLACK #000000  (light text on top)
     - All accents (buttons, links, icons, prices) -> GOLD

   INSTRUCTIONS:
   - Change ONLY the :root variables below to customize colors
   - Add company-specific overrides in Section 2
   - DO NOT edit style.css - it is shared across all installations
   ========================================================================== */


/* ==========================================================================
   1. COLOR VARIABLES
   ========================================================================== */
:root {

    /* === PRESET: Gold #b9945d === */
    --accent-color: #b9945d;
    --accent-color-dark: #a07d45;
    --accent-color-light: #cda876;
    --accent-color-mid: #c19e68;

    /* -----------------------------------------------------------------
       ACCENT TRANSPARENT VARIANTS
       ----------------------------------------------------------------- */
    --accent-glow-strong: rgba(185, 148, 93, 1);
    --accent-glow: rgba(185, 148, 93, 0.7);
    --accent-glow-soft: rgba(185, 148, 93, 0.45);
    --accent-glow-dim: rgba(185, 148, 93, 0.35);
    --accent-glow-faint: rgba(185, 148, 93, 0.08);
    --accent-bg-subtle: rgba(185, 148, 93, 0.12);
    --accent-bg-glass: rgba(160, 125, 69, 0.10);
    --accent-bg-radial: rgba(185, 148, 93, 0.15);
    --accent-border-subtle: rgba(185, 148, 93, 0.22);
    --accent-border-medium: rgba(185, 148, 93, 0.30);
    --accent-text-85: rgba(125, 99, 52, 0.85);
    --accent-text-70: rgba(125, 99, 52, 0.70);

    /* -----------------------------------------------------------------
       ACTION BUTTONS
       ----------------------------------------------------------------- */
    --warning: #b9945d;
    --error: #EF4444;
    --success: #10B981;
    --success-dark: #059669;

    /* -----------------------------------------------------------------
       TOP NAVIGATION BAR  ->  GOLD
       ----------------------------------------------------------------- */
    --topbar-bg: #b9945d;

    /* -----------------------------------------------------------------
       TEXT COLORS
       ----------------------------------------------------------------- */
    --text-color: #333;
    --text-muted: #6c757d;

    /* -----------------------------------------------------------------
       BACKGROUNDS
       ----------------------------------------------------------------- */
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-bg: #a07d45;

    /* -----------------------------------------------------------------
       BORDERS
       ----------------------------------------------------------------- */
    --border-color: #e2e8f0;

    /* -----------------------------------------------------------------
       FLATPICKR DATE PICKER
       ----------------------------------------------------------------- */
    --flatpickr-hover-bg: #b9945d;
    --flatpickr-hover-text: #ffffff;
}


/* ==========================================================================
   QUICK REFERENCE
   ==========================================================================
   GOLD   #b9945d  -> Buttons (CTA), top nav bar, dots, icons, links,
                      borders, badges, selected states, prices
   D-GOLD #a07d45  -> Hover states on CTAs
   DEEP   #7d6334  -> Accent text where extra weight needed (on light bg)
   BLACK  #000000  -> Footer background
   ========================================================================== */


/* 1. Labels */
.ez-sf-field label {
    font-weight: 600 !important;
    font-size: 0.73rem !important;
}


/* ==========================================================================
   2. HEADER (GOLD)  &  FOOTER (BLACK)
   ========================================================================== */

/* --- Header --- BLACK background (like footer) --- */
header.bg-gray-950.text-gray-300.shadow-sm.sticky.top-0.z-50 {
    background-color: #000000;
}

/* --- Nav links --- LIGHT on black, hover GOLD --- */
.ez-nav-link {
    color: #e5e7eb !important;
}
.ez-nav-link:hover {
    color: #b9945d !important;
}

button#nav-toggle {
    color: #ffffff;
}

/* --- Mobile nav --- BLACK (matches header) --- */
@media (max-width: 1024px) {
    #nav-menu.nav-menu--open {
        background-color: #000000;
    }
}


/* --- Footer --- BLACK background --- */
footer.bg-gray-950.text-gray-300.py-12.relative.overflow-hidden.font-sans {
    background-color: #000000;
}
footer .text-custom-accent {
    color: #cda876;
}
footer .border-custom-accent\/30 {
    border-color: rgba(185, 148, 93, 0.25);
}

/* --- Footer texts --- LIGHT GRAY (readable on black) --- */
footer .footer-link-item {
    color: #d1d5db;
}
p.flex.items-center.text-gray-400.hover\:text-custom-accent.transition {
    color: #d1d5db;
}
p.flex.items-center.text-gray-400.hover\:text-custom-accent.transition:hover {
    color: #cda876;
}
p.text-gray-400.text-base.max-w-sm.leading-relaxed.hover\:text-custom-accent {
    color: #d1d5db;
}
.text-center.md\:text-center.space-y-0\.5.w-full.mt-4 {
    color: #d1d5db;
}
footer .hover\:text-custom-accent {
    color: #d1d5db;
}

/* --- Footer headings --- LIGHT GOLD on black --- */
h5.font-bold.text-white.mb-4.uppercase.tracking-widest.text-sm.border-b.border-custom-accent\/30.pb-2 {
    color: #cda876;
}
h5.font-bold.text-white.mb-5.uppercase.tracking-widest.text-sm.border-b.border-custom-accent\/30.pb-2 {
    color: #cda876;
}


/* ==========================================================================
   3. MISC ACCENTS
   ========================================================================== */
.model-spec-item:hover {
    border-color: #b9945d;
}
.model-includes-title i {
    color: #b9945d;
}

/* --- Form borders --- subtle GRAY --- */
.form-group input[type="text"], .form-group input[type="date"],
.form-group input[type="time"], .form-group select {
    border: 1px solid #c5c8c7;
}

/* --- Form field icons --- */
.mf-field label i {
    color: #9f9b9b;
}
.model-spec-icon {
    color: #9f9b9b;
}
.border-green-500 {

    border-color: rgb(185 148 93)!important;
}