/*
Theme Name: Litterateur Pro
Theme URI: https://litterateur.pro
Description: A modern React-based WordPress theme for Litterateur Pro - AI-powered content distribution platform
Author: Litterateur Team
Version: 1.0.0
License: MIT
Text Domain: litterateur-pro
*/

/* Basic reset and typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* React app container */
#rootOfProContentlitterateur {
  min-height: 100vh;
}

/* Responsive utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hero-section h1 {
    font-size: 2.5rem !important;
  }

  .hero-section p {
    font-size: 1.1rem !important;
  }

  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-buttons button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0 !important;
  }

  .hero-section h1 {
    font-size: 2rem !important;
  }

  .features-section,
  .how-it-works-section,
  .cta-section {
    padding: 60px 0 !important;
  }

  .features-section h2,
  .how-it-works-section h2,
  .cta-section h2 {
    font-size: 2rem !important;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .hero-section,
  .cta-section {
    background: white !important;
    color: black !important;
  }

  button {
    display: none;
  }
}
