/*
Theme Name: ZFnew
Theme URI: http://localhost/zfnew
Author: Benko Istvan
Author URI: http://localhost/
Description: Egyedi WordPress sablon a ZFnew projekthez.
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: zfnew
Tags: custom, responsive, blog
*/

/* Alap stílusok */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Header */
.site-header {
    background: #2eaf63;
    color: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #00893d;
}

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

.site-title a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}

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

/* Navigáció */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Tartalom */
.site-content {
    padding: 40px 0;
    min-height: 60vh;
}

.site-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

article {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

article h2 a {
    color: #222;
    text-decoration: none;
}

article h2 a:hover {
    color: #00893d;
}

.entry-meta {
    color: #888;
    font-size: 0.9rem;
    margin: 10px 0;
}

/* Sidebar */
.widget-area {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 5px;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #d4f5e0;
}

/* Reszponzív */
@media (max-width: 768px) {
    .site-content .container {
        grid-template-columns: 1fr;
    }

    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}
