/* ./assets/css/branding.css */

:root {
    /* Exact Franchise Colors from ShiftingHelp.com */
    --thm-primary: #FFD550;        /* Golden Yellow */
    --thm-secondary: #186265;      /* Dark Teal/Green */
    --thm-heading-color: #0D4250;  /* Deep Dark Blue/Grey */
    --thm-body-text: #60666C;      /* Standard Grey Text */
    --thm-white: #ffffff;
    --thm-black: #000000;
}

/* Base UI Elements */
body {
    font-family: 'Krub', sans-serif;
    color: var(--thm-body-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    color: var(--thm-heading-color);
    font-weight: 700;
}

.btn-primary-brand {
    background-color: var(--thm-primary);
    color: var(--thm-heading-color);
    border: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary-brand:hover {
    background-color: var(--thm-secondary);
    color: var(--thm-white);
}

/* The Sidebar Sticky Form Styling */
.sticky-enquiry-box {
    position: sticky;
    top: 100px;
    background: var(--thm-white);
    padding: 25px;
    border-radius: 8px;
    border-top: 5px solid var(--thm-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}