/* Category Page - CSS */

/* Alapértelmezett betűtípus */
* {
    font-family: 'Poppins', sans-serif;
}

/* ===== FŐ KONTÉNER ===== */
.category-page-container {
    margin: 50px 0;
    padding: 0;
}

/* ===== KATEGÓRIA FEJLÉC ===== */
.category-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    position: relative;
    overflow: hidden;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.category-header > * {
    position: relative;
    z-index: 2;
}

.category-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 25px;
    max-width: 600px;
    opacity: 0.9;
}

.category-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.category-post-count {
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-divider {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

/* ===== BEJEGYZÉSEK GRID ===== */
.category-posts-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

/* Grid oszlopok */
.category-posts-grid[data-columns="1"] {
    grid-template-columns: 1fr;
}

.category-posts-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.category-posts-grid[data-columns="3"] {
    grid-template-columns: repeat(3, 1fr);
}

.category-posts-grid[data-columns="4"] {
    grid-template-columns: repeat(4, 1fr);
}

/* ===== BEJEGYZÉS ELEM ===== */
.category-post-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

.category-post-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #e9ecef;
}

/* ===== KIEMELT KÉP ===== */
.category-post-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.category-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-post-item:hover .category-post-image img {
    transform: scale(1.08);
}

/* Kép overlay */
.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(52, 152, 219, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
}

.category-post-item:hover .image-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===== TARTALOM ===== */
.category-post-content {
    padding: 25px;
}

/* Meta információk */
.category-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.post-date {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.post-author {
    font-size: 13px;
    color: #95a5a6;
    font-weight: 500;
}

.post-category {
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cím */
.category-post-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.category-post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-post-title a:hover {
    color: #3498db;
}

/* Kivonat */
.category-post-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #5d6d7e;
    margin-bottom: 20px;
}

/* Tovább link */
.category-post-read-more {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.category-post-read-more:hover {
    color: #2980b9;
    transform: translateX(5px);
}

.category-post-read-more::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.category-post-read-more:hover::after {
    margin-left: 12px;
}

/* ===== PAGINATION ===== */
.category-pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination-nav {
    display: inline-block;
}

.pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-item a,
.pagination-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #5d6d7e;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-item a:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

.pagination-item .current {
    background: #3498db;
    border-color: #3498db;
    color: white;
}

.pagination-item .dots {
    border: none;
    background: none;
    color: #bdc3c7;
}

/* ===== RESZPONZÍV DESIGN ===== */

/* Large desktop */
@media (min-width: 1400px) {
    .category-posts-grid {
        gap: 35px;
    }
    
    .category-post-image {
        height: 250px;
    }
    
    .category-post-content {
        padding: 30px;
    }
    
    .category-title {
        font-size: 48px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .category-posts-grid {
        gap: 25px;
    }
    
    .category-post-image {
        height: 200px;
    }
    
    .category-post-title {
        font-size: 18px;
    }
    
    .category-title {
        font-size: 38px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .category-page-container {
        margin: 40px 0;
    }
    
    .category-header {
        margin-bottom: 40px;
        padding: 30px 20px;
    }
    
    .category-title {
        font-size: 32px;
    }
    
    .category-description {
        font-size: 16px;
    }
    
    .category-posts-grid[data-columns="4"] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-posts-grid[data-columns="3"] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-posts-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .category-post-image {
        height: 180px;
    }
    
    .category-post-content {
        padding: 20px;
    }
    
    .category-post-title {
        font-size: 17px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .category-page-container {
        margin: 30px 0;
    }
    
    .category-header {
        margin-bottom: 30px;
        padding: 25px 15px;
        border-radius: 10px;
    }
    
    .category-title {
        font-size: 28px;
    }
    
    .category-description {
        font-size: 15px;
    }
    
    .category-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-post-count {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .category-posts-grid[data-columns="2"],
    .category-posts-grid[data-columns="3"],
    .category-posts-grid[data-columns="4"] {
        grid-template-columns: 1fr;
    }
    
    .category-posts-grid {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .category-post-item {
        border-radius: 12px;
    }
    
    .category-post-image {
        height: 200px;
    }
    
    .category-post-content {
        padding: 18px;
    }
    
    .category-post-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .category-post-excerpt {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .category-post-meta {
        margin-bottom: 12px;
        gap: 10px;
    }
    
    .post-date,
    .post-author {
        font-size: 12px;
    }
    
    .post-category {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .category-post-read-more {
        font-size: 13px;
    }
    
    .pagination-list {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .pagination-item a,
    .pagination-item span {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
        padding: 0 12px;
    }
}

/* Kis mobil */
@media (max-width: 480px) {
    .category-page-container {
        margin: 25px 0;
    }
    
    .category-header {
        padding: 20px 10px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .category-description {
        font-size: 14px;
    }
    
    .category-posts-grid {
        gap: 15px;
    }
    
    .category-post-image {
        height: 180px;
    }
    
    .category-post-content {
        padding: 15px;
    }
    
    .category-post-title {
        font-size: 15px;
    }
    
    .category-post-excerpt {
        font-size: 13px;
    }
    
    .category-post-read-more {
        font-size: 12px;
    }
    
    .pagination-item a,
    .pagination-item span {
        min-width: 36px;
        height: 36px;
        font-size: 12px;
        padding: 0 8px;
    }
}

/* ===== SPECIÁLIS STÍLUSOK ===== */

/* Sötét mód támogatás */
@media (prefers-color-scheme: dark) {
    .category-post-item {
        background: #2c3e50;
        border-color: #34495e;
        color: #ecf0f1;
    }
    
    .category-header {
        background: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
    }
    
    .category-post-title a {
        color: #ecf0f1;
    }
    
    .category-post-title a:hover {
        color: #5dade2;
    }
    
    .category-post-excerpt {
        color: #bdc3c7;
    }
    
    .post-date,
    .post-author {
        color: #95a5a6;
    }
    
    .post-category {
        background: #5dade2;
    }
    
    .category-post-read-more {
        color: #5dade2;
    }
    
    .category-post-read-more:hover {
        color: #3498db;
    }
    
    .category-post-image {
        background: #34495e;
    }
    
    .pagination-item a,
    .pagination-item span {
        background: #2c3e50;
        border-color: #34495e;
        color: #ecf0f1;
    }
    
    .pagination-item a:hover {
        background: #5dade2;
        border-color: #5dade2;
    }
    
    .pagination-item .current {
        background: #5dade2;
        border-color: #5dade2;
    }
}

/* Mozgás csökkentése preferencia */
@media (prefers-reduced-motion: reduce) {
    .category-post-item,
    .category-post-image img,
    .image-overlay,
    .category-post-title a,
    .category-post-read-more,
    .pagination-item a {
        transition: none;
    }
    
    .category-post-item:hover {
        transform: none;
    }
    
    .category-post-item:hover .category-post-image img {
        transform: none;
    }
    
    .category-post-item:hover .image-overlay {
        transform: translate(-50%, -50%);
    }
    
    .category-post-read-more:hover {
        transform: none;
    }
    
    .pagination-item a:hover {
        transform: none;
    }
}

/* Magas kontraszt mód */
@media (prefers-contrast: high) {
    .category-post-item {
        border: 3px solid #000;
    }
    
    .category-title,
    .category-post-title a {
        color: #000;
    }
    
    .category-post-title a:hover,
    .category-post-read-more {
        color: #0066cc;
    }
    
    .category-post-excerpt {
        color: #333;
    }
    
    .pagination-item a,
    .pagination-item span {
        border: 2px solid #000;
        color: #000;
    }
    
    .pagination-item a:hover,
    .pagination-item .current {
        background: #000;
        color: #fff;
    }
}

/* Printelhető nézet */
@media print {
    .category-page-container {
        margin: 0;
    }
    
    .category-header {
        background: none !important;
        color: #000 !important;
        padding: 20px 0;
        border: 1px solid #ddd;
    }
    
    .category-title {
        font-size: 24px;
        color: #000 !important;
    }
    
    .category-description {
        color: #333 !important;
    }
    
    .category-posts-grid {
        display: block;
    }
    
    .category-post-item {
        break-inside: avoid;
        margin-bottom: 20px;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .category-post-image {
        height: 150px;
    }
    
    .image-overlay {
        display: none;
    }
    
    .category-post-title a,
    .category-post-read-more {
        color: #000 !important;
    }
    
    .category-post-read-more::after {
        display: none;
    }
    
    .category-pagination {
        display: none;
    }
}

/* Focus állapotok akadálymentességhez */
.category-post-title a:focus,
.category-post-read-more:focus,
.category-post-image a:focus,
.pagination-item a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Loading animáció (opcionális) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-post-item {
    animation: fadeInUp 0.6s ease-out;
}

.category-post-item:nth-child(1) { animation-delay: 0.1s; }
.category-post-item:nth-child(2) { animation-delay: 0.2s; }
.category-post-item:nth-child(3) { animation-delay: 0.3s; }
.category-post-item:nth-child(4) { animation-delay: 0.4s; }
.category-post-item:nth-child(5) { animation-delay: 0.5s; }
.category-post-item:nth-child(6) { animation-delay: 0.6s; }