/*
Theme Name: ConvertIQ
Theme URI: https://convertiq.com
Description: AI-powered website optimization and analysis platform. Features include real-time website scanning, SEO analysis, conversion optimization, and AI readiness scoring.
Version: 1.0.0
Author: Your Name
Author URI: https://yourwebsite.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: convertiq
Tags: business, ai, saas, dark-theme, two-columns, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
  --primary: #a855f7;
  --secondary: #3b82f6;
  --dark: #0f172a;
  --darker: #1e293b;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Loading Animation */
.spinner {
  border: 4px solid rgba(168, 85, 247, 0.1);
  border-top: 4px solid #a855f7;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .container {
    padding: 0 0.75rem;
  }
}

/* WordPress Core Styles */
.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #9ca3af;
}

.sticky {
  /* Sticky post styles */
}

.bypostauthor {
  /* Post author styles */
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }
  
  header, footer {
    display: none;
  }
}