/*
Theme Name: directpress
Theme URI: https://example.com/directpress
Author: Ivan Urbano
Author URI: https://example.com
Description: Tema básico de WordPress personalizado.
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: directpress
*/

/* Reset & Theme Styles */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f6f8;
    margin: 0;
    padding: 0;
}

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e4e8;
    padding: 20px 0;
}

.site-title {
    margin: 0;
    font-size: 1.8rem;
}

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

.site-description {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.95rem;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: flex;
    gap: 15px;
}

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

.site-main {
    padding: 40px 0;
}

.entry-header {
    margin-bottom: 15px;
}

.entry-title a {
    color: #222;
    text-decoration: none;
}

article {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}
