/*
Theme Name: Astra
Theme URI: https://wordpress.org/themes/monsterinsights/
Description: The best free Google Analytics plugin for WordPress. See how visitors find and use your website so you can grow your business with powerful analytics.
Version: 3.1.7
Author: MonsterInsights Team
Author URI: https://www.monsterinsights.com/
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: monsterinsights
Requires at least: 5.0
Requires PHP: 7.0
Tags: analytics, google-analytics, seo, business, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* 
Astra Theme - Premium WP Theme
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
.site-header {
    background: #1a73e8;
    color: white;
    padding: 20px 0;
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* Content */
.site-content {
    padding: 40px 0;
}

/* Footer */
.site-footer {
    background: #202124;
    color: #999;
    padding: 30px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .site-branding {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
}