/*
Theme Name: Vertexa Digital Solutions Custom Theme
Theme URI: https://vertexa.digital/
Author: Vertexa Digital Solutions s. r. o.
Author URI: https://vertexa.digital/
Description: A premium, ultra-high-performance custom WordPress theme for Vertexa Digital Solutions featuring beautiful modern typography, ambient glow backdrops, and interactive simulated AI/cloud dashboards.
Version: 1.0.0
License: GNU GPLv2 or later
Text Domain: vertexa-theme
*/

/* Custom CSS Styles to support React-like glassmorphism and ambient glows */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

html {
  scroll-behavior: smooth;
  background-color: #020617;
  color: #f1f5f9;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #020617;
  overflow-x: hidden;
}

.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Glassmorphism Panel styles matching the React app */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.1);
}

/* Glowing text and animations */
.text-glow-blue {
  text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.text-glow-cyan {
  text-shadow: 0 0 20px rgba(0, 210, 253, 0.5);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #020617;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
