/*
Theme Name: dgtechsol
Theme URI: https://dgtechsol.com/
Author: Antigravity
Description: A high-performance, enterprise-grade WordPress agency theme for dgtechsol.
Version: 1.0.0
Text Domain: dgtechsol
*/

:root {
  /* Brand Palette */
  --color-brand-navy: #0B1120;
  --color-brand-blue: #2563EB;
  --color-brand-blue-hover: #1D4ED8;
  --color-accent-teal: #0D9488;
  
  /* Neutrals & Greys */
  --color-surface-white: #FFFFFF;
  --color-surface-light: #F8FAFC;
  --color-gray-100: #F1F5F9;
  --color-gray-400: #94A3B8;
  --color-gray-800: #1E293B;

  /* Typography */
  --font-primary: 'Inter', system-ui, sans-serif;
  --font-heading: 'Outfit', system-ui, sans-serif;

  /* UI Effects */
  --shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Glassmorphism */
  --glass-bg: rgba(11, 17, 32, 0.85);
  --glass-blur: blur(16px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--color-gray-800);
  background-color: var(--color-surface-white);
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-brand-navy);
  font-weight: 700;
}
