/*
 * Oakwood Care Home – Local Development Overrides
 * Applied on top of the core styles for localhost/XAMPP use.
 * -------------------------------------------------------
 * Loads Roboto from Google Fonts (requires internet),
 * or falls back to system sans-serif if offline.
 */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

/* ── Font fallback when Google Fonts is unreachable ─────────────── */
body, input, button, select, textarea {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont,
                 'Segoe UI', Arial, sans-serif !important;
}

/* ── Suppress GTM/tracking console noise on localhost ───────────── */
/* (tracking scripts will fail silently – no visual impact) */

/* ── Fix broken logo display if SVG not yet customised ─────────── */
.tmn-logo-desktop,
.tmn-logo-mobile {
    object-fit: contain;
}

/* ── Placeholder image styling ──────────────────────────────────── */
img[src*="placeholder"] {
    background: #e8f0f7;
    min-height: 60px;
}

/* ── Remove cookie-consent banner on localhost ───────────────────── */
/* Axeptio SDK won't work locally; hide any empty banner space */
#axeptio_overlay,
#axeptio_main_button {
    display: none !important;
}
