/* 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: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

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

.category-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 25px 0;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #ffffff, #f8f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-description {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 auto 30px;
    max-width: 700px;
    opacity: 0.95;
    font-weight: 300;
}

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

.category-post-count {
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.category-post-count:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.category-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

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

/* 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: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #f1f3f4;
    position: relative;
}

.category-post-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-post-item:hover::before {
    opacity: 1;
}

.category-post-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

/* ===== KIEMELT KÉP ===== */
.category-post-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.category-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(1.05) saturate(1.1);
}

.category-post-item:hover .category-post-image img {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.2);
}

/* Kép overlay */
.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    backdrop-filter: blur(10px);
}

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

/* ===== TARTALOM ===== */
.category-post-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

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

.post-date {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.3px;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.post-author {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.post-category {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    transition: all 0.3s ease;
}

.post-category:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

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

.category-post-title a {
    color: #1f2937;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.category-post-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.category-post-title a:hover {
    color: #667eea;
}

.category-post-title a:hover::after {
    width: 100%;
}

/* Kivonat */
.category-post-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 25px;
    text-align: justify;
}

/* Tovább link */
.category-post-read-more {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.category-post-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.category-post-read-more:hover::before {
    left: 100%;
}

.category-post-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.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: 60px;
    text-align: center;
}

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

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

.pagination-item a,
.pagination-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pagination-item a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.pagination-item .current {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pagination-item .dots {
    border: none;
    background: none;
    color: #9ca3af;
    box-shadow: none;
}

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

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

/* Desktop */
@media (max-width: 1200px) {
    .category-posts-grid {
        gap: 30px;
    }
    
    .category-post-image {
        height: 220px;
    }
    
    .category-post-title {
        font-size: 20px;
    }
    
    .category-title {
        font-size: 42px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .category-page-container {
        margin: 40px 0;
    }
    
    .category-header {
        margin-bottom: 50px;
        padding: 40px 25px;
    }
    
    .category-title {
        font-size: 36px;
    }
    
    .category-description {
        font-size: 18px;
    }
    
    .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: 25px;
        margin-bottom: 50px;
    }
    
    .category-post-image {
        height: 200px;
    }
    
    .category-post-content {
        padding: 25px;
    }
    
    .category-post-title {
        font-size: 19px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .category-page-container {
        margin: 30px 0;
    }
    
    .category-header {
        margin-bottom: 40px;
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .category-title {
        font-size: 32px;
    }
    
    .category-description {
        font-size: 16px;
    }
    
    .category-meta {
        flex-direction: column;
        gap: 20px;
    }
    
    .category-post-count {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .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: 25px;
        margin-bottom: 40px;
    }
    
    .category-post-item {
        border-radius: 15px;
    }
    
    .category-post-image {
        height: 220px;
    }
    
    .category-post-content {
        padding: 22px;
    }
    
    .category-post-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .category-post-excerpt {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .category-post-meta {
        margin-bottom: 15px;
        gap: 12px;
    }
    
    .post-date,
    .post-author {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .post-category {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .category-post-read-more {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .pagination-list {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .pagination-item a,
    .pagination-item span {
        min-width: 44px;
        height: 44px;
        font-size: 13px;
        padding: 0 14px;
    }
}

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

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

/* Sötét mód támogatás */
@media (prefers-color-scheme: dark) {
    .category-post-item {
        background: #1f2937;
        border-color: #374151;
        color: #f9fafb;
    }
    
    .category-header {
        background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    }
    
    .category-post-title a {
        color: #f9fafb;
    }
    
    .category-post-title a:hover {
        color: #a78bfa;
    }
    
    .category-post-excerpt {
        color: #d1d5db;
    }
    
    .post-date,
    .post-author {
        background: #374151;
        color: #e5e7eb;
        border-color: #4b5563;
    }
    
    .category-post-image {
        background: linear-gradient(135deg, #374151, #4b5563);
    }
    
    .pagination-item a,
    .pagination-item span {
        background: #1f2937;
        border-color: #374151;
        color: #f9fafb;
    }
    
    .pagination-item a:hover {
        background: linear-gradient(135deg, #a78bfa, #8b5cf6);
        border-color: #a78bfa;
    }
    
    .pagination-item .current {
        background: linear-gradient(135deg, #a78bfa, #8b5cf6);
        border-color: #a78bfa;
    }
}

/* 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;
    }
    
    .category-post-read-more::before {
        display: 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 {
        background: #000;
        color: #fff;
    }
    
    .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;
        background: none !important;
        -webkit-text-fill-color: initial !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;
        background: none !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: 3px solid #667eea;
    outline-offset: 2px;
}

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

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.category-post-item {
    animation: slideInScale 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.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; }
.category-post-item:nth-child(7) { animation-delay: 0.7s; }
.category-post-item:nth-child(8) { animation-delay: 0.8s; }
.category-post-item:nth-child(9) { animation-delay: 0.9s; }