/*
 * Explorer Insights Theme Stylesheet
 */

/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.site-branding {
    float: left;
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.site-description {
    font-size: 0.9rem;
    color: #666;
}

/* Navigation styles */
.main-navigation {
    float: right;
}

.main-navigation ul {
    list-style: none;
    display: flex;
}

.main-navigation li {
    margin-left: 1.5rem;
}

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

.main-navigation a:hover {
    color: #0073aa;
}

/* Content styles */
.site-content {
    padding: 2rem 0;
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
}

.entry-content {
    margin-bottom: 2rem;
}

.entry-content p {
    margin-bottom: 1rem;
}

/* Elementor compatibility */
.elementor-page .site-content {
    padding: 0;
}

.elementor-page .entry-content {
    margin-bottom: 0;
}

/* Make sure Elementor sections can be full width */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
}

.elementor-section.elementor-section-full_width {
    width: 100%;
}

/* Footer styles */
.site-footer {
    background-color: #f5f5f5;
    padding: 2rem 0;
    margin-top: 2rem;
}

.site-info {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
    .site-branding,
    .main-navigation {
        float: none;
        text-align: center;
    }
    
    .main-navigation ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-navigation li {
        margin: 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}