/*
Theme Name: SCA Atlanta
Theme URI: https://www.sca-atl.com
Author: Southeastern Computer Associates
Author URI: https://www.sca-atl.com
Description: Custom WordPress theme for Southeastern Computer Associates - Atlanta's #1 Rated IT Support Company since 1995. Modern futuristic design with glassmorphism, animations, and data visualization.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
License URI: https://www.sca-atl.com
Text Domain: sca-atl
Tags: custom-menu, featured-images, custom-logo, translation-ready

Southeastern Computer Associates - Atlanta IT Support WordPress Theme
*/

/* ============================================
   SCA Website - Modern Futuristic Design
   Glassmorphism + Animations + Data Viz
   ============================================ */

:root {
  /* Primary Brand Colors */
  --primary: #1e3a5f;
  --primary-dark: #0f1f33;
  --primary-light: #2a4d7a;
  --primary-rgb: 30, 58, 95;
  
  /* Secondary Brand Colors */
  --secondary: #e5a619;
  --secondary-dark: #c89015;
  --secondary-light: #f5b82e;
  --secondary-rgb: 229, 166, 25;
  
  /* Accent Colors - Brand Only */
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-cyan: #00f3ff;
  
  /* Neutral Colors */
  --tertiary: #ffffff;
  --quaternary: #c8d4e3;
  --muted: #f0f4f8;
  --dark-bg: #050a14;
  --card-bg: rgba(255, 255, 255, 0.03);
  
  /* Glassmorphism */
  --glass-bg: rgba(15, 31, 51, 0.7);
  --glass-border: rgba(229, 166, 25, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  --gradient-hero: radial-gradient(circle at 50% 50%, #1e3a5f 0%, #050a14 100%);
  --gradient-glow: linear-gradient(135deg, rgba(229, 166, 25, 0.3) 0%, rgba(229, 166, 25, 0.0) 100%);
  
  /* Fonts */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-tech: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   WordPress-specific overrides
   ============================================ */

/* Widen the Bootstrap container for a fuller layout */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1540px;
  }
}

/* Ensure full-width backgrounds aren't constrained by WP wrappers */
body {
  overflow-x: hidden;
}

/* "Get Started" nav button styling via menu class */
.sca-nav-cta > a.nav-link {
  background: var(--secondary) !important;
  color: var(--primary-dark) !important;
  border-radius: 6px;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600;
}

.sca-nav-cta > a.nav-link:hover {
  background: var(--secondary-light) !important;
}

/* NOTE: The full site CSS is in css/main.css which is enqueued via functions.php.
   This file contains only the WP theme header, CSS custom properties, and WP-specific overrides.
   All other styles are loaded from css/main.css to keep things maintainable. */
