/* --- ALAPBEÁLLÍTÁSOK & PAPÍR TÉMA --- */
:root {
    --paper-line: #aecbeb;
    --bg-doodle: #e5e5e5;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    background-color: #f4f4f4;
    background-image:
        radial-gradient(circle, #bbb 1px, transparent 1px),
        linear-gradient(to right, #e0e0e0 1px, transparent 1px),
        linear-gradient(to bottom, #e0e0e0 1px, transparent 1px);
    background-size: 20px 20px, 100px 100px, 100px 100px;
    font-family: 'Segoe UI', sans-serif;
    color: #444;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- TÁGAS KONTÉNER --- */
.container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    padding: 0 15px;
    flex: 1;
}

/* --- FEJLÉC (Tépett kockás papír) --- */
header {
    position: relative;
    background-color: #fff;
    background-image:
        linear-gradient(var(--paper-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--paper-line) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center top;
    padding: 40px 20px 70px 20px;
    text-align: center;
    clip-path: polygon(0% 0%, 100% 0%,
            100% 96%,
            97% 99%, 94% 95%, 92% 99%, 88% 94%, 85% 98%, 81% 93%,
            75% 99%, 70% 94%, 66% 98%, 62% 93%, 57% 99%, 52% 92%,
            48% 98%, 42% 93%, 38% 99%, 33% 92%, 28% 98%, 24% 93%,
            19% 99%, 13% 94%, 9% 98%, 5% 93%, 2% 98%, 0% 95%);
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.3));
    margin-bottom: 40px;
    z-index: 100;
}

h1.site-title {
    font-family: 'Indie Flower', cursive;
    font-size: 3.5rem;
    margin: 0;
    color: #2c3e50;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
    transform: rotate(-2deg);
}

/* --- MENÜ --- */
nav {
    margin-top: 25px;
    background: transparent !important;
}

nav ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 5px 10px;
}

nav a {
    font-family: 'Indie Flower', cursive;
    font-size: 1.4rem;
    text-decoration: none;
    color: #333;
    background: transparent;
    padding: 8px 20px;
    border: 2px solid #444;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
}

nav a:hover {
    background: rgba(65, 184, 131, 0.8);
    color: white;
    border-color: #2e8b57;
    transform: scale(1.1) rotate(2deg);
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.15);
}

/* --- KÉTOSZLOPOS FŐOLDALI ELRENDEZÉS --- */
.layout-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 0 40px;
    align-items: flex-start;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* KÁRTYÁK RÁCSA (A cetlik egymás mellett helyezkednek el) */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
    gap: 30px;
    justify-content: start;
}

/* --- CETLI / KÁRTYA STÍLUS --- */
.article-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
    transform: rotate(1.5deg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.posts-grid .article-card {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:nth-child(2n) {
    transform: rotate(-1.5deg);
}

.article-card:nth-child(3n) {
    transform: rotate(2deg);
}

/* Rajzszög piros pötty */
.article-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #e74c3c;
    border-radius: 50%;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid #c0392b;
}

.article-card:hover {
    transform: scale(1.03) !important;
    z-index: 50;
    box-shadow: 12px 12px 2px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Gombok és linkek a kártyán */
.paper-btn {
    font-family: 'Indie Flower', cursive;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    border: 2px solid #444;
    transition: all 0.2s;
}
.btn-primary-outline {
    background: transparent;
    color: #2c3e50;
}
.btn-primary-outline:hover {
    background: #34495e;
    color: #fff;
}
.btn-success {
    background: #27ae60;
    color: #fff;
    border-color: #1e8449;
}
.btn-success:hover {
    background: #219150;
}

/* --- JOBB HASÁB (CÍMKEFELHŐ) --- */
.sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag-badge {
    font-family: 'Indie Flower', cursive;
    font-size: 1.05rem;
    font-weight: bold;
    color: #2c3e50;
    background: #fdfdfd;
    text-decoration: none;
    padding: 3px 9px;
    border: 1.5px solid #444;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    transition: all 0.2s ease;
    display: inline-block;
}

.tag-badge:hover {
    background: #e74c3c;
    color: #fff;
    transform: scale(1.08) rotate(-2deg);
}

.tag-badge.active {
    background: #27ae60;
    color: #fff;
    border-color: #1e8449;
}

/* --- EGYEDI CIKK RÉSZLETES NÉZETE (FULL WIDTH) --- */
.layout-wrapper.single-view-layout {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}

.layout-wrapper.single-view-layout .main-content {
    width: 100%;
}

.article-card.full-view {
    transform: none !important;
    padding: 35px 45px;
    line-height: 1.7;
}

.article-card.full-view::before {
    top: -6px;
}

.post-body {
    margin: 25px 0;
    font-size: 1.05rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    margin: 15px 0;
    border-radius: 4px;
}

.post-body blockquote {
    background: #fffde7;
    border-left: 4px solid #f1c40f;
    padding: 12px 18px;
    margin: 18px 0;
    font-style: italic;
}

/* --- LÁBLÉC --- */
footer {
    margin-top: auto;
    padding: 30px;
    text-align: center;
    font-family: 'Indie Flower', cursive;
    color: #666;
    background: transparent;
    border-top: 2px dashed #999;
}

.footer-content p {
    margin: 5px 0;
    font-size: 1.1rem;
}

/* --- RESZPONZIVITÁS --- */
@media (max-width: 900px) {
    .layout-wrapper {
        flex-direction: column-reverse;
    }
    .sidebar {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }
    .posts-grid {
        justify-content: center;
    }
}

/* --- KERESŐ DOBOZ STÍLUSOK --- */
.search-input {
    width: 100%;
    padding: 8px 12px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    border: 2px solid #444;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    background: #fafafa;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: #27ae60;
    background: #fff;
}

.search-btn {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    text-align: center;
    background: #fdfdfd;
}

.search-btn:hover {
    background: #27ae60 !important;
    color: #fff !important;
    border-color: #1e8449 !important;
}