/*
Theme Name: TeqzWP
Theme URI: https://teqzerodigital.com
Author: Teqzero Digital
Author URI: https://teqzerodigital.com
Description: A minimal theme designed for headless WordPress architecture.
Version: 3.2.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: teqzwp
*/

:root {
  --bg-color: #f0f2f5;
  --card-bg: #ffffff;
  --text-main: #1c1e21;
  --text-muted: #65676b;
  --primary-color: #0866ff;
  --primary-hover: #1877f2;
  --border-radius: 12px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  height: 100vh;
  display: flex;
  flex-direction: column;
}


/* Main Content */
#site-content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}