/* Footer Widgets - CSS */

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

/* ===== KÖZÖS WIDGET STÍLUSOK ===== */

.footer-categories-widget,
.footer-random-posts-widget {
    margin-bottom: 30px;
    padding: 0;
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    padding: 0;
    line-height: 1.3;
    padding-bottom: 8px;
}

/* ===== KATEGÓRIÁK WIDGET ===== */

.footer-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-category-item {
    margin: 0 0 5px 0;
    padding: 0;
    line-height: 1.4;
}

.footer-category-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.footer-category-link:hover {
    color: #3498db;
    border-left-color: #3498db;
    padding-left: 16px;
    background: rgba(52, 152, 219, 0.05);
}

.footer-category-count {
    font-size: 12px;
    color: #95a5a6;
    font-weight: 400;
}

/* ===== RANDOM BEJEGYZÉSEK WIDGET ===== */

.footer-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-post-item {
    margin: 0 0 5px 0;
    padding: 0;
    line-height: 1.4;
}

.footer-post-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0 4px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    line-height: 1.4;
}

.footer-post-link:hover {
    color: #3498db;
    border-left-color: #3498db;
    padding-left: 16px;
    background: rgba(52, 152, 219, 0.05);
}

.footer-post-date {
    display: block;
    font-size: 11px;
    color: #95a5a6;
    margin-top: 2px;
    padding-left: 12px;
    font-weight: 400;
}

/* ===== ALTERNATÍV STÍLUSOK ===== */

/* Kompakt verzió */
.footer-categories-widget.compact .footer-category-item,
.footer-random-posts-widget.compact .footer-post-item {
    margin-bottom: 4px;
}

.footer-categories-widget.compact .footer-category-link,
.footer-random-posts-widget.compact .footer-post-link {
    padding: 4px 0;
    font-size: 13px;
}

/* Kártyás verzió */
.footer-categories-widget.card,
.footer-random-posts-widget.card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.footer-categories-widget.card .footer-widget-title,
.footer-random-posts-widget.card .footer-widget-title {
    color: #2c3e50;
    border-color: #dee2e6;
}

/* Színes verzió */
.footer-categories-widget.colored .footer-widget-title {
    color: white;
    background: #3498db;
    margin: -20px -20px 15px -20px;
    padding: 15px 20px;
    border: none;
    border-radius: 8px 8px 0 0;
}

.footer-random-posts-widget.colored .footer-widget-title {
    color: white;
    background: #e74c3c;
    margin: -20px -20px 15px -20px;
    padding: 15px 20px;
    border: none;
    border-radius: 8px 8px 0 0;
}

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

/* Tablet nézet */
@media (max-width: 1024px) {
    .footer-widget-title {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .footer-category-link,
    .footer-post-link {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .footer-post-item {
        margin-bottom: 10px;
    }
}

/* Mobil nézet */
@media (max-width: 768px) {
    .footer-categories-widget,
    .footer-random-posts-widget {
        margin-bottom: 25px;
    }
    
    .footer-widget-title {
        font-size: 16px;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }
    
    .footer-category-link,
    .footer-post-link {
        font-size: 12px;
        padding: 4px 0;
        padding-left: 10px;
    }
    
    .footer-category-link:hover,
    .footer-post-link:hover {
        padding-left: 14px;
    }
    
    .footer-post-item {
        margin-bottom: 8px;
    }
    
    .footer-post-date {
        font-size: 10px;
        padding-left: 10px;
    }
    
    .footer-category-count {
        font-size: 11px;
    }
}

/* Kis mobil nézet */
@media (max-width: 480px) {
    .footer-categories-widget,
    .footer-random-posts-widget {
        margin-bottom: 20px;
    }
    
    .footer-widget-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .footer-category-link,
    .footer-post-link {
        font-size: 11px;
        padding: 3px 0;
        padding-left: 8px;
    }
    
    .footer-category-link:hover,
    .footer-post-link:hover {
        padding-left: 12px;
    }
    
    .footer-post-date {
        font-size: 9px;
        padding-left: 8px;
    }
}

/* ===== SPECIÁLIS MEGJELENÍTÉSEK ===== */

/* Sötét mód támogatás */
@media (prefers-color-scheme: dark) {
    .footer-categories-widget,
    .footer-random-posts-widget {
        color: #ecf0f1;
    }
    
    .footer-widget-title {
        color: #ecf0f1;
        border-color: #5dade2;
    }
    
    .footer-category-link,
    .footer-post-link {
        color: #bdc3c7;
    }
    
    .footer-category-link:hover,
    .footer-post-link:hover {
        color: #5dade2;
        border-left-color: #5dade2;
        background: rgba(93, 173, 226, 0.1);
    }
    
    .footer-category-count,
    .footer-post-date {
        color: #85929e;
    }
    
    .footer-categories-widget.card,
    .footer-random-posts-widget.card {
        background: #2c3e50;
        border-color: #34495e;
    }
}

/* Mozgás csökkentése preferencia */
@media (prefers-reduced-motion: reduce) {
    .footer-category-link,
    .footer-post-link {
        transition: none;
    }
    
    .footer-category-link:hover,
    .footer-post-link:hover {
        padding-left: 12px;
    }
}

/* Magas kontraszt mód */
@media (prefers-contrast: high) {
    .footer-widget-title {
        color: #000;
        border-color: #000;
    }
    
    .footer-category-link,
    .footer-post-link {
        color: #000;
    }
    
    .footer-category-link:hover,
    .footer-post-link:hover {
        color: #0066cc;
        border-left-color: #0066cc;
        background: rgba(0, 102, 204, 0.1);
    }
    
    .footer-category-count,
    .footer-post-date {
        color: #666;
    }
}

/* Printelhető nézet */
@media print {
    .footer-categories-widget,
    .footer-random-posts-widget {
        break-inside: avoid;
        margin-bottom: 15px;
    }
    
    .footer-widget-title {
        color: #000 !important;
        border-color: #000 !important;
        font-size: 14px;
    }
    
    .footer-category-link,
    .footer-post-link {
        color: #000 !important;
        font-size: 12px;
        border: none !important;
        padding-left: 0 !important;
    }
    
    .footer-category-count,
    .footer-post-date {
        color: #666 !important;
    }
}

/* Focus állapotok akadálymentességhez */
.footer-category-link:focus,
.footer-post-link:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
    background: rgba(52, 152, 219, 0.1);
}