/*
Theme Name: Custom WordPress VIP Theme
Description: A custom WordPress theme following VIP coding standards
Author: Your Name
Version: 1.0.0
License: GPL v2 or later
Text Domain: custom-theme
*/

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

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

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

/* Header */
.site-header {
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.site-title:hover {
    color: #007cba;
}

/* Navigation */
.main-navigation {
    margin-top: 1rem;
}

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

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

.main-navigation a:hover {
    color: #007cba;
}

/* Main content */
.site-main {
    padding: 2rem 0;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

.site-footer p {
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .entry-title {
        font-size: 2rem;
    }
} 