/* =============================================
   Tande-Halvorsen – site.css
   ============================================= */

/* --- Brand colour tokens --- */
:root {
    --brand-dark:   #2c2c2c;
    --brand-accent: #2c2c2c;
    --brand-light:  #f5f5f5;
    --brand-text:   #111111;
}

/* --- Bootstrap overrides & utilities --- */
.bg-brand {
    background-color: var(--brand-dark) !important;
}

.text-accent {
    color: var(--brand-accent) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.btn-accent {
    background-color: var(--brand-accent);
    color: #ffffff;
    font-weight: 600;
    border: none;
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: #111111;
    color: #ffffff;
}

/* --- Typography --- */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    color: var(--brand-text);
    background-color: #ffffff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* --- Navbar --- */
.navbar .nav-link {
    font-weight: 500;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.navbar .nav-link:hover {
    color: var(--brand-accent) !important;
}

/* --- Footer --- */
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--brand-accent);
    text-decoration: none;
}

/* --- Focus ring --- */
.btn:focus,
.btn:active:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(44, 44, 44, 0.4);
}

/* --- Section spacing --- */
.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-light {
    background-color: var(--brand-light);
}
