/* Látnivalók szűrő gombok stílusai */

.attractions-filter-section {
    background: var(--card-background);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.attractions-filter-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.filter-header {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.filter-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--light-background);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    background: var(--card-background);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.filter-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.filter-btn:active {
    transform: translateY(0);
}

/* Kategória specifikus színek */
.filter-btn[data-category="templom"]:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.filter-btn[data-category="muemlek"]:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.filter-btn[data-category="szabadido"]:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.filter-btn[data-category="kulturalis"]:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.filter-btn[data-category="termeszeti"]:hover {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.1);
}

.filter-btn[data-category="sport"]:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.filter-btn[data-category="instagram"]:hover {
    border-color: #ec4899;
    background: rgba(236, 72, 153, 0.1);
}

.filter-results-info {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-background);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.filter-results-count {
    font-weight: 600;
    color: var(--primary-color);
}

.no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
    background: var(--light-background);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.no-results-icon {
    font-size: 3rem;
    color: var(--border-color);
    margin-bottom: 1rem;
}

.no-results-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.no-results-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.no-results-suggestions {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.no-results-suggestions h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.no-results-suggestions ul {
    list-style: none;
    padding: 0;
}

.no-results-suggestions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.no-results-suggestions li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .attractions-filter-section {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .filter-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .attractions-filter-section {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .filter-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .filter-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Dark mode támogatás */
@media (prefers-color-scheme: dark) {
    .attractions-filter-section {
        background: var(--card-background);
        border-color: var(--border-color);
    }
    
    .filter-btn {
        background: var(--light-background);
        color: var(--text-color);
        border-color: var(--border-color);
    }
    
    .filter-btn:hover {
        background: var(--card-background);
    }
}

/* Animációk */
.filter-btn {
    position: relative;
    overflow: hidden;
}

.filter-btn::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;
}

.filter-btn:hover::before {
    left: 100%;
}

/* Fokozatos megjelenés */
.attractions-filter-section {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Gombok fokozatos megjelenése */
.filter-btn {
    animation: fadeInScale 0.4s ease-out;
    animation-fill-mode: both;
}

.filter-btn:nth-child(1) { animation-delay: 0.1s; }
.filter-btn:nth-child(2) { animation-delay: 0.2s; }
.filter-btn:nth-child(3) { animation-delay: 0.3s; }
.filter-btn:nth-child(4) { animation-delay: 0.4s; }
.filter-btn:nth-child(5) { animation-delay: 0.5s; }
.filter-btn:nth-child(6) { animation-delay: 0.6s; }
.filter-btn:nth-child(7) { animation-delay: 0.7s; }
.filter-btn:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
