/*
 Theme Name:   Astra Child
 Description:  Child theme for Astra with modern UI enhancements for 2025
 Author:       WordPress Developer
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  astra-child
*/

/* 
 * Import Google Fonts for modern typography
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/*
 * Custom styles will go here
 */

/* 
 * Modern UI Enhancements - 2025
 * These enhancements work with Astra's existing structure
 */

/* Enhanced color variables */
:root {
  --modern-primary: #2563eb;
  --modern-secondary: #10b981;
  --modern-accent: #f59e0b;
  --modern-background: #f8fafc;
  --modern-text: #1e293b;
  --modern-text-light: #64748b;
  --modern-border: #e2e8f0;
  --modern-shadow: rgba(0, 0, 0, 0.08);
  --modern-gradient: linear-gradient(135deg, var(--modern-primary), var(--modern-secondary));
  --modern-gradient-alt: linear-gradient(135deg, var(--modern-accent), var(--modern-secondary));
}

/* Modern body styling - subtle enhancements */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  background-color: var(--modern-background);
}

/* Enhanced spacing */
#content {
  margin: 60px 0 80px;
}

/* Modern container improvements */
.container {
  max-width: 1200px;
}