/*
Theme Name: ZiNova LLC Theme
Theme URI: https://zinova.io
Author: ZiNova LLC Engineering Team
Author URI: https://zinova.io
Description: We Build Apps, Games & Digital Experiences. High-performance WordPress Theme for Mobile Apps, Game Engineering, and Digital Marketing with automated lead notifications.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zinova-llc-theme
Tags: mobile-apps, game-development, digital-marketing, technology, agency, clean-typography, lead-generation, responsive-layout, block-patterns, full-site-editing
*/

:root {
  --theme-primary: #06b6d4;
  --theme-accent: #3b82f6;
  --theme-secondary: #6366f1;
  --theme-radius: 1rem;
  --font-heading: 'Outfit', 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Plus Jakarta Sans', sans-serif;
}

/* Base Styles & Typography */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: #030712;
  color: #f3f4f6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

/* Custom UI Components */
.zinova-btn-primary {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-accent));
  color: #030712 !important;
  padding: 0.875rem 1.75rem;
  border-radius: var(--theme-radius);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.25);
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.zinova-btn-primary:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(6, 182, 212, 0.4);
}

.zinova-card {
  background-color: #0b1120;
  border: 1px solid #1e293b;
  border-radius: var(--theme-radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.zinova-card:hover {
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #030712;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}
