/*
Theme Name: PeopleHub
Theme URI: https://cardstonsupportservices.ca
Author: Cardston Support Services
Author URI: https://cardstonsupportservices.ca
Description: A minimal, purpose-built theme for the PeopleHub portal system. Provides a clean canvas for portal shortcodes with zero interference.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: Proprietary
Text Domain: peoplehub

This theme is intentionally minimal — all portal UI is rendered by the PeopleHub plugin shortcodes.
*/

/* ========================================
   Base Reset
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
    min-height: 100vh;
}

/* Ensure shortcode output fills the page naturally */
.site-content {
    width: 100%;
    min-height: calc(100vh - 32px);
    /* Account for WP admin bar */
}

/* Remove default link underlines on portal pages */
a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* WP admin bar spacing */
body.admin-bar .site-content {
    min-height: calc(100vh - 32px);
}