/*
Theme Name: SEO Expert Theme
Theme URI: https://example.com/seo-expert
Author: AI Assistant
Author URI: https://example.com
Description: A lightweight, SEO-optimized WordPress theme with built-in Friendly Links and Sitemap generation.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: seo-friendly, fast, custom-sitemap, friend-links
Text Domain: seo-expert
*/

/* Reset & Basic Styles for SEO Speed (Minimal CSS) */
:root {
    --primary-color: #0073aa;
    --text-color: #333;
    --bg-color: #fff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    margin: 0;
    line-height: 1.6;
}

a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
header { border-bottom: 1px solid #eee; padding: 20px 0; }
footer { border-top: 1px solid #eee; padding: 40px 0; margin-top: 40px; font-size: 0.9em; }

/* Friendly Links Styles */
.friend-links { margin-top: 20px; }
.friend-links h3 { font-size: 1.2em; border-left: 4px solid var(--primary-color); padding-left: 10px; }
.friend-links ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 15px; }
.friend-links li a { color: #555; }

/* Basic Layout */
article { margin-bottom: 40px; }
h1, h2, h3 { line-height: 1.2; }
