/*
Theme Name: TBS Theme
Theme URI: https://www.torsangs.se/
Author: Torsångs Handelsträdgård AB
Description: Minimalt WordPress-tema för TBS Business Suite. Visar endast TBS-/sidinnehåll och en diskret konfigurerbar sidfot.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: tbs-theme
*/

:root {
    --tbs-theme-bg: var(--tbs-bg, #f3f5f2);
    --tbs-theme-text: var(--tbs-text, #17231d);
    --tbs-theme-muted: var(--tbs-muted, #66736c);
    --tbs-theme-border: var(--tbs-border, #dce3de);
}

html, body { margin: 0; padding: 0; min-height: 100%; }
body.tbs-theme-body {
    min-height: 100vh;
    background: var(--tbs-theme-bg);
    color: var(--tbs-theme-text);
    font-family: var(--tbs-font, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    display: flex;
    flex-direction: column;
}

.tbs-theme-main { flex: 1 0 auto; width: 100%; min-width: 0; }
.tbs-theme-content { width: 100%; min-width: 0; }

/* Tema-skalet ska inte lägga typografi eller maxbredd ovanpå TBS-modulerna. */
.tbs-theme-content > *:first-child { margin-top: 0; }
.tbs-theme-content > *:last-child { margin-bottom: 0; }

.tbs-theme-footer {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: 100%;
    padding: 22px 16px 26px;
    text-align: center;
    color: var(--tbs-theme-muted);
    border-top: 1px solid var(--tbs-theme-border);
    background: rgba(255,255,255,.72);
}
.tbs-theme-footer-inner { max-width: 1100px; margin: 0 auto; }
.tbs-theme-footer-logo { display: block; max-width: 230px; max-height: 90px; width: auto; height: auto; margin: 0 auto 10px; object-fit: contain; }
.tbs-theme-footer-company { font-size: 13px; font-weight: 650; color: var(--tbs-theme-text); }
.tbs-theme-footer-meta { margin-top: 4px; font-size: 11px; line-height: 1.45; }

/* WordPress kan lägga på standardmarginal när adminbaren är synlig. */
body.admin-bar.tbs-theme-body { min-height: calc(100vh - 32px); }
@media (max-width: 782px) { body.admin-bar.tbs-theme-body { min-height: calc(100vh - 46px); } }

@media print {
    .tbs-theme-footer { display: none !important; }
}
