/*
Theme Name: GHK Egyedi Sablon
Template: blankslate
*/

/* --- ALAPBEÁLLÍTÁSOK --- */
* {
    box-sizing: border-box; /* Hogy a padding ne növelje a szélességet */
}

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- FEJLÉC --- */
.site-header {
    padding: 20px 0;
}

.site-logo img {
    max-height: 80px;
    width: auto;
    display: block;
}

/* --- MENÜ --- */
.site-nav {
    margin-top: 15px;
}

.site-nav .container {
    padding: 0;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    border-top: 2px solid #444;
    width: 100%;
}

.site-nav li {
    border-right: 1px solid #eee;
    transition: background-color 0.2s ease;
    position: relative;
}

.site-nav li:first-child {
    border-left: 1px solid #eee;
}

.site-nav li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 15px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Aktív állapotok közös szabálya */
.site-nav li[class*="active-"] a {
    color: #fff !important;
}

/* Színkódok */
.site-nav li.home-btn { background-color: #444; }
.site-nav li.active-home { background-color: #222; }
.site-nav li.active-blue { background-color: #0078d4; }
.site-nav li.active-red { background-color: #d90000; }
.site-nav li.active-orange { background-color: #f39c12; }
.site-nav li.active-pink { background-color: #d6249f; }
.site-nav li.active-green { background-color: #77b300; }
.site-nav li.active-yellow { background-color: #ffc107; }
.site-nav li.active-purple { background-color: #8e44ad; }
.site-nav li.active-cyan { background-color: #00bcd4; }
.site-nav li.active-teal { background-color: #009688; }
.site-nav li.active-grey { background-color: #7f8c8d; }

.site-nav li a:hover { background-color: #f8f8f8; }
.site-nav li.home-btn a:hover { background-color: #555; }
.site-nav li[class*="active-"]:hover { filter: brightness(90%); }

/* --- ELRENDEZÉS (RÁCS) --- */
.main-layout {
    display: flex;
    margin-top: 40px;
    gap: 0;
}

.main-content {
    flex: 7;
    padding-right: 40px;
}

.sidebar {
    flex: 3;
    background-color: #f9f9f9;
    padding: 30px;
    border-left: 1px solid #eee;
}

/* --- POSZTOK STÍLUSA --- */
.post-card, .single-post-view {
    margin-bottom: 50px;
}

.post-card h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.post-card h2 a {
    color: #000;
    text-decoration: none;
}

.post-meta {
    font-size: 11px;
    color: #999;
    margin-bottom: 25px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-meta .category {
    border: 1px solid #999;
    padding: 3px 6px;
    color: #555;
}

.post-content {
    font-size: 14px;
    line-height: 1.6;
}

.post-content p a {
    color: #d90000;
    font-weight: bold;
    text-decoration: none;
}

/* --- GOMBOK --- */
.btn-orange, .btn-blue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    text-decoration: none !important;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 4px;
    margin: 15px 10px 15px 0;
    font-size: 14px;
    transition: opacity 0.2s;
}

.btn-orange { background-color: #f39c12; }
.btn-blue { background-color: #0073aa; }
.btn-orange:hover, .btn-blue:hover { opacity: 0.85; }

/* --- OLDALSÁV --- */
.search-form { display: flex; margin-bottom: 30px; }
.search-submit {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    cursor: pointer;
}
.search-field {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-left: none;
}

.social-widget { display: flex; gap: 10px; margin-bottom: 20px; }
.social-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; border-radius: 4px;
}
.social-icon.facebook { background-color: #3b5998; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }

/* --- LÁBLÉC --- */
.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    margin-top: 60px;
    padding: 50px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.widget-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #222;
}

.footer-bottom {
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #888;
}