/*
Theme Name: Website Design Solutions
Theme URI: https://websitedesignsolutions.com
Author: Website Design Solutions Team
Author URI: https://websitedesignsolutions.com
Description: High-performance, modern, and SEO-optimized WordPress agency theme for WebsiteDesignSolutions.com, tailored for local market domination in Orange County, Los Angeles, and the Inland Empire.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.1
Requires PHP: 7.4
License: Proprietary
License URI: https://websitedesignsolutions.com/terms
Text Domain: websitedesignsolutions
Tags: responsive-layout, custom-menu, featured-images, full-site-editing, agency, local-seo, e-commerce, portfolio
*/

/* ==========================================================================
   Base Theme Variables & Global Reset
   ========================================================================== */
:root {
  --wds-primary: #3b82f6;
  --wds-primary-hover: #2563eb;
  --wds-primary-rgb: 59, 130, 246;
  
  --wds-accent: #06b6d4;
  --wds-accent-hover: #0891b2;
  --wds-accent-gradient: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #8b5cf6 100%);
  --wds-glow-gradient: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), transparent 70%);

  --wds-dark-bg: #090d16;
  --wds-card-bg: #111827;
  --wds-card-border: #1f2937;
  --wds-card-hover: #1e293b;
  
  --wds-text-main: #f8fafc;
  --wds-text-muted: #94a3b8;
  --wds-text-dim: #64748b;
  
  --wds-success: #10b981;
  --wds-warning: #f59e0b;
  --wds-danger: #ef4444;

  --wds-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --wds-font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wds-radius-sm: 8px;
  --wds-radius-md: 14px;
  --wds-radius-lg: 20px;
  --wds-radius-xl: 28px;
  --wds-radius-full: 9999px;

  --wds-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
  --wds-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --wds-shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.4);
  --wds-shadow-glow: 0 0 40px rgba(59, 130, 246, 0.25);
  
  --wds-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --wds-container-max: 1340px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--wds-font-sans);
  background-color: var(--wds-dark-bg);
  color: var(--wds-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

a:hover {
  color: var(--wds-accent);
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
