/*
Theme Name: ZaazTheme
Theme URI: https://zaaz.app/theme
Author: ZaazTech
Author URI: https://zaaz.app
Description: A lightweight, performance-focused WordPress framework theme. Designed as the perfect companion to ZaazBuilder page builder.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zaaztheme
Tags: custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, theme-options, translation-ready

ZaazTheme - Lightweight WordPress Framework Theme
*/

/* Design Token System — shared with ZaazBuilder */
:root {
  /* Colors */
  --zb-primary: #1a5276;
  --zb-secondary: #e74c3c;
  --zb-accent: #f39c12;
  --zb-text: #333333;
  --zb-text-light: #666666;
  --zb-heading: #1a1a1a;
  --zb-bg: #ffffff;
  --zb-bg-alt: #f8f9fa;
  --zb-border: #e0e0e0;

  /* Typography */
  --zb-font-heading: 'Montserrat', sans-serif;
  --zb-font-body: 'Open Sans', sans-serif;
  --zb-font-size-base: 16px;
  --zb-line-height-base: 1.6;

  /* Layout */
  --zb-container-width: 1200px;
  --zb-sidebar-width: 300px;
  --zb-header-height: 80px;
  --zb-header-height-sticky: 60px;

  /* Spacing Scale */
  --zb-space-xs: 4px;
  --zb-space-sm: 8px;
  --zb-space-md: 16px;
  --zb-space-lg: 32px;
  --zb-space-xl: 64px;
  --zb-space-2xl: 96px;

  /* Transitions */
  --zb-transition-fast: 150ms ease;
  --zb-transition-base: 300ms ease;
  --zb-transition-slow: 500ms ease;

  /* Shadows */
  --zb-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --zb-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --zb-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--zb-font-size-base);
  line-height: var(--zb-line-height-base);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--zb-font-body);
  color: var(--zb-text);
  background-color: var(--zb-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--zb-primary);
  text-decoration: none;
  transition: color var(--zb-transition-fast);
}

a:hover {
  color: var(--zb-secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--zb-font-heading);
  color: var(--zb-heading);
  line-height: 1.3;
  font-weight: 700;
}
