/* Header kép + grain overlay */
.post-header-wrapper {
    position: relative;
    width: 100%;
    height: 400px; /* induló nagy magasság */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: height 0.2s ease-out;
}

.post-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.grain-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 2;
}

.post-title {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 36px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    text-align: center;
    padding: 0 20px;
}

.post-excerpt {
    position: relative;
    z-index: 3;
    color: #f0f0f0;
    font-size: 18px;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

/* Tartalom keret */
.post-content-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.post-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.blog-image img {
    width: 50%;
    display: block;
    margin: auto;
    image-rendering: pixelated;
    border-radius: 8px;
    margin-bottom: 20px;
}

.post-body {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.post-categories {
    margin-top: 20px;
}

.post-categories .category {
    display: inline-block;
    background: #eee;
    color: #3b2e2a;
    padding: 5px 10px;
    border-radius: 6px;
    margin-right: 5px;
    font-size: 14px;
}

.back-btn {
    display: inline-block;
    text-decoration: none;
    background: #3b2e2a;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 25px;
}

.back-btn:hover {
    background: #5a4535;
}
/* Főoldali header */
.site-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Főcím */
.site-title {
    font-size: 64px;
    font-weight: 800;
    color: #6b4d2f; /* tea-barna */
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    margin: 0;
    line-height: 1.1;
    transition: transform 0.3s ease;
}

/* Hover effekt (ha akarjuk) */
.site-title:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 12px rgba(0,0,0,0.3);
}


.related-posts-plant {
    margin-top: 30px;
}

.related-posts-plant h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #3b2e2a;
}

.related-bubbles-plant {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plant-bubble {
    display: inline-block;
    padding: 8px 14px;
    border: 2px solid #6b4d2f;
    border-radius: 25px;
    background: #f9f9f9;
    color: #6b4d2f;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.plant-bubble:hover {
    background: #6b4d2f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
/**/
@media (max-width: 1024px) {
    /* Blog grid kevesebb oszloppal */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 15px;
    }

    .content-layout {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .latest-posts {
        max-width: 100%;
    }

    .main-content {
        flex: 1;
    }

    .filter-pagination-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pagination {
        text-align: left;
    }

    .category-filters {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    /* Kereső mező és gomb mobilon */
    .search-box input {
        width: 100%;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .search-box button {
        width: 100%;
        padding: 10px;
    }

    /* Blog grid 1 oszlop mobilon */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }

    /* Header kép kisebb magassággal */
    .post-header-wrapper {
        height: 250px;
    }

    .post-title {
        font-size: 24px;
        padding: 0 10px;
    }

    .post-excerpt {
        font-size: 14px;
        margin-top: 5px;
        padding: 0 10px;
    }

    /* Tartalom wrapper mobilon */
    .content-wrapper {
        padding: 10px;
        gap: 15px;
    }

    /* Post content mobilon */
    .post-content-wrapper {
        padding: 15px;
    }

    .post-body {
        font-size: 16px;
    }

    .blog-image img {
        width: 100%;
        height: auto;
    }

    .latest-posts {
        order: 2; /* ha szeretnéd, hogy legfelül legyen a grid előtt, akkor order: -1 */
    }

    .main-content {
        order: 1;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .category-bubble {
        font-size: 12px;
        padding: 6px 10px;
    }

    .plant-bubble {
        font-size: 12px;
        padding: 6px 10px;
    }

    .pagination a {
        padding: 5px 8px;
        margin: 0 2px;
        font-size: 14px;
    }
}
