/* ALAP BEÁLLÍTÁSOK */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f8f6;
    color: #2e2e2e;
}

/* FEJLÉC */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #1a5f3c;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

/* KERESŐ */
.search-container {
    position: relative;
    width: 260px;
}

.search-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 16px;
}

/* KERESÉSI TALÁLATOK */
.search-results {
 display: none;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    padding: 10px 0;
    z-index: 1000;
    border: 1px solid #d7e8dd;
}

.search-result-item {
    display: block;
    padding: 14px 20px;
    margin: 6px 12px;
    background: #f3f9f5;
    border-radius: 10px;
    color: #1a5f3c;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
    border: 1px solid #e0efe5;
}

.search-result-item:hover {
    background: #e6f4ec;
    transform: translateX(4px);
    border-color: #c7e2d2;
}

/* POPULAR SZEKCIÓ */
.popular {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.popular h2 {
    font-size: 28px;
    color: #1a5f3c;
    margin-bottom: 20px;
}

.popular-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-item {
    display: block;
    padding: 20px;
    background: white;
    border-radius: 14px;
    text-decoration: none;
    color: #1a5f3c;
    font-weight: 600;
    font-size: 18px;
    border: 1px solid #dce9e2;
    transition: 0.2s ease;
}

.popular-item:hover {
    background: #f0f7f3;
    transform: translateX(4px);
}

/* KATEGÓRIÁK */
.categories {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.categories h2 {
    font-size: 28px;
    color: #1a5f3c;
    margin-bottom: 20px;
}

details {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #dce9e2;
}

details summary {
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    color: #1a5f3c;
}

details ul {
    margin-top: 12px;
    padding-left: 20px;
}

details a {
    color: #2e2e2e;
    text-decoration: none;
    font-size: 17px;
}

details a:hover {
    color: #1a5f3c;
}
/* CIKKOLDAL – KONZISZTENS DIZÁJN */
.article-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    font-size: 19px;
    line-height: 1.75;
}

/* Cikk címe */
.article-container h1 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a5f3c;
    font-weight: 700;
    line-height: 1.3;
}

/* Alcímek */
.article-container h2 {
    margin-top: 35px;
    font-size: 26px;
    color: #2d7a4f;
    font-weight: 600;
}

.article-container h3 {
    margin-top: 25px;
    font-size: 22px;
    color: #3b8f5d;
    font-weight: 600;
}

/* Bekezdések */
.article-container p {
    margin: 18px 0;
}

/* Listák */
.article-container ul {
    margin: 15px 0 15px 25px;
}

.article-container li {
    margin: 10px 0;
}

/* Kiemelt doboz */
.highlight {
    background: #f3f9f5;
    border-left: 5px solid #1a5f3c;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 8px;
    font-weight: 500;
}

/* KATEGÓRIAOLDAL KÁRTYÁK */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
}

.category-item, .article-item {
    display: block;
    padding: 20px;
    background: white;
    border-radius: 14px;
    text-decoration: none;
    color: #1a5f3c;
    border: 1px solid #dce9e2;
    transition: 0.2s ease;
}

.category-item:hover,
.article-item:hover {
    background: #f0f7f3;
    transform: translateX(4px);
}

/* LÁBLÉC */
.footer {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    background: #1a5f3c;
    color: white;
    font-size: 16px;
}

.footer strong {
    font-size: 18px;
}

/* MOBILBARÁT BEÁLLÍTÁSOK */
@media (max-width: 600px) {

    .header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .search-container {
        width: 100%;
    }

    .article-container {
        padding: 20px;
        font-size: 18px;
    }

    .article-container h1 {
        font-size: 28px;
    }

    .article-container h2 {
        font-size: 23px;
    }

    .article-container h3 {
        font-size: 20px;
    }

    .popular-item,
    .category-item,
    .article-item {
        font-size: 17px;
    }
}
