/* site.css – Cutter4D Global Styles */

/* Reset Bootstrap conflicts for dark theme */
body {
    margin: 0;
    padding: 0;
    background-color: var(--c4-bg, #080c14);
    color: var(--c4-text, #e2e8f0);
}

/* Ensure main never has unwanted bottom margin */
main {
    margin-bottom: 0 !important;
}

/* Remove Bootstrap's default link color override */
a {
    text-decoration: none;
}

    /* Focus styles – accessible but themed */
    .btn:focus,
    .btn:active:focus,
    button:focus-visible,
    a:focus-visible {
        outline: 2px solid rgba(0, 212, 255, 0.6);
        outline-offset: 2px;
        box-shadow: none;
    }

/* Smooth transitions globally */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Hide Bootstrap default navbar styles – use c4-nav instead */
.navbar {
    display: none !important;
}

/* Utility: visually hidden for a11y */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
