/*
Theme Name: SAM Network
Theme URI: https://samnet.com.au/
Author: SAM Network Team
Author URI: https://samnet.com.au/
Description: A custom WordPress theme for SAM Network – a cloud-based building operating system platform.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: sam-network
*/

/* =========================
   GLOBAL LAYOUT
========================= */

:root {
  --site-bg: #f3f4ef;
  --site-padding-desktop: 15px;
  --site-padding-mobile: 10px;
}

body{
  font-family: 'Inter', sans-serif;
}

/* Body background */
body {
  background: var(--site-bg);
}

/* Main site wrapper */
.sam-site {
  padding-left: var(--site-padding-desktop);
  padding-right: var(--site-padding-desktop);
}

/* Mobile */
@media (max-width: 768px) {
  .sam-site {
    padding-left: var(--site-padding-mobile);
    padding-right: var(--site-padding-mobile);
  }
}