/* theme: style.css */
/*
Theme Name: NeonDigital
Theme URI: https://example.com/neondigital
Author: Your Name
Author URI: https://example.com
Description: A futuristic WooCommerce-ready theme for selling digital products, featuring gradient text, colourful box-shadows, and three vibrant colour schemes.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neondigital
Domain Path: /languages
*/
:root {
  /* Default scheme: neon-blue-pink */
  --primary: #5B8CFF;
  --primary-glow: 0 0 15px rgba(91,140,255,0.6);
  --secondary: #FF5EB8;
  --secondary-glow: 0 0 15px rgba(255,94,184,0.6);
  --bg: #0A0E1A;
  --surface: #111827;
  --surface-border: #1F2937;
  --text: #EAECF0;
  --text-muted: #9CA3AF;
  --heading-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --button-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --radius: 12px;
  --space: 16px;
  --transition: 0.2s ease;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space);
}
